diff options
author | Santosh P K <sapk@vmware.com> | 2020-01-09 18:53:27 +0100 |
---|---|---|
committer | Santosh P K <sapk@vmware.com> | 2020-01-31 12:36:37 +0100 |
commit | b9e6727acd3b86a196d8bedc06e61b0b3ba8c47b (patch) | |
tree | b3191ec08a0878dbf57c8857605fa8b87a536a8e /zebra/zserv.h | |
parent | zebra: Handling of connection disconnect and connect with GR. (diff) | |
download | frr-b9e6727acd3b86a196d8bedc06e61b0b3ba8c47b.tar.xz frr-b9e6727acd3b86a196d8bedc06e61b0b3ba8c47b.zip |
zebra: Capabality and stale route handling for GR client.
Handling capability received from client. It may contain
GR enable/disable, Stale time changes, RIB update complete
for given AFi, ASAFI and instance. It also has changes for
stale route handling.
Signed-off-by: Santosh P K <sapk@vmware.com>
Diffstat (limited to 'zebra/zserv.h')
-rw-r--r-- | zebra/zserv.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/zebra/zserv.h b/zebra/zserv.h index 877f3a8e3..77ea19202 100644 --- a/zebra/zserv.h +++ b/zebra/zserv.h @@ -317,6 +317,10 @@ int zebra_finalize(struct thread *event); */ extern int zebra_gr_client_disconnect(struct zserv *client); extern void zebra_gr_client_reconnect(struct zserv *client); +extern void zebra_gr_stale_client_cleanup(struct list *client_list); +extern void zread_client_capabilities(struct zserv *client, struct zmsghdr *hdr, + struct stream *msg, + struct zebra_vrf *zvrf); #ifdef __cplusplus } |