diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-11-07 10:37:05 +0200 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-07 10:37:05 +0200 | 
| commit | 47f3d0905b896253f9aa9cd14a44691453f71bbf (patch) | |
| tree | 9bc602bbaf94b77dceb83fa34805ceef1c1125c9 /lib/zclient.h | |
| parent | ac8aa2f7ca24412791e9313fdef7fddbf7b5c9ef (diff) | |
| parent | a048d52399dfd99f0235b3f2e0766e2b98c62c8e (diff) | |
Merge pull request #12238 from donaldsharp/append
lib, zebra: Allow for zebra to recognize that a route has gotten desy…
Diffstat (limited to 'lib/zclient.h')
| -rw-r--r-- | lib/zclient.h | 7 | 
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/zclient.h b/lib/zclient.h index 31ab60485e..731769abf7 100644 --- a/lib/zclient.h +++ b/lib/zclient.h @@ -544,6 +544,13 @@ struct zapi_route {   */  #define ZEBRA_FLAG_OFFLOAD_FAILED     0x200 +/* + * This flag lets us know that we think the route entry + * received has caused us to be out of sync with the + * kernel (NLM_F_APPEND at the very least ) + */ +#define ZEBRA_FLAG_OUTOFSYNC          0x400 +  	/* The older XXX_MESSAGE flags live here */  	uint32_t message;  | 
