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 /lib | |
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 'lib')
-rw-r--r-- | lib/zebra.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/zebra.h b/lib/zebra.h index fe34be78..a607437a 100644 --- a/lib/zebra.h +++ b/lib/zebra.h @@ -464,7 +464,6 @@ extern const char *zserv_command_string (unsigned int command); #define ZEBRA_FLAG_BLACKHOLE 0x04 #define ZEBRA_FLAG_IBGP 0x08 #define ZEBRA_FLAG_SELECTED 0x10 -#define ZEBRA_FLAG_CHANGED 0x20 #define ZEBRA_FLAG_STATIC 0x40 #define ZEBRA_FLAG_REJECT 0x80 |