diff options
author | Timo Teräs <timo.teras@iki.fi> | 2015-11-02 16:50:05 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-12-08 14:12:10 -0500 |
commit | 7eb6136b2732d4782360f9f376336c6d4f667ff0 (patch) | |
tree | 5e77b44139cf542a18a949d1204ace4316b474f1 /zebra/rib.h | |
parent | 929a26a7cf80b2df9981595e6bcfcfc4a970052a (diff) | |
download | quagga-7eb6136b2732d4782360f9f376336c6d4f667ff0.tar.bz2 quagga-7eb6136b2732d4782360f9f376336c6d4f667ff0.tar.xz |
zebra: make ZEBRA_FLAG_CHANGED internal status
This flag is used internally in zebra only. And it makes no sense
to expose it over the zclient API, as having it set from client
could corrupt the internal state.
Signed-off-by: Timo Teräs <timo.teras@iki.fi>
Acked-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/rib.h')
-rw-r--r-- | zebra/rib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zebra/rib.h b/zebra/rib.h index 2af90db2..6e0966ab 100644 --- a/zebra/rib.h +++ b/zebra/rib.h @@ -78,6 +78,7 @@ struct rib /* RIB internal status */ u_char status; #define RIB_ENTRY_REMOVED (1 << 0) +#define RIB_ENTRY_CHANGED (1 << 1) /* Nexthop information. */ u_char nexthop_num; |