diff options
author | Timo Teräs <timo.teras@iki.fi> | 2015-05-14 09:14:43 +0300 |
---|---|---|
committer | Timo Teräs <timo.teras@iki.fi> | 2015-06-04 11:30:34 +0300 |
commit | 415f2236cb08027a93577255bfdf549e32c787d7 (patch) | |
tree | 6db41c0d5a5356831ff860586998b485698aac55 /zebra/rib.h | |
parent | c6bb5fb3e638b5b026f303dc0c5dbd60cd256ab2 (diff) | |
download | quagga-415f2236cb08027a93577255bfdf549e32c787d7.tar.bz2 quagga-415f2236cb08027a93577255bfdf549e32c787d7.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>
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 afd4b4ed..229747df 100644 --- a/zebra/rib.h +++ b/zebra/rib.h @@ -66,6 +66,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; |