diff options
author | hasso <hasso> | 2004-10-03 18:18:34 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-10-03 18:18:34 +0000 |
commit | 18a6dce6f83dd20caf1f36c8e840868ff0bf6dbd (patch) | |
tree | ff832cbf6fe2b239bde06268820587bec671ae6d /zebra/zserv.h | |
parent | a49c0ff6771975eeb1bd7da923a9dc830200cf65 (diff) | |
download | quagga-18a6dce6f83dd20caf1f36c8e840868ff0bf6dbd.tar.bz2 quagga-18a6dce6f83dd20caf1f36c8e840868ff0bf6dbd.tar.xz |
Common router id.
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 ac5da1b2..620e24dd 100644 --- a/zebra/zserv.h +++ b/zebra/zserv.h @@ -56,6 +56,9 @@ struct zserv /* Interface information. */ u_char ifinfo; + + /* Router-id information. */ + u_char ridinfo; }; /* Zebra instance */ @@ -92,6 +95,7 @@ int zsend_interface_address (int, struct zserv *, struct interface *, struct connected *); int zsend_interface_update (int, struct zserv *, struct interface *); int zsend_route_multipath (int, struct zserv *, struct prefix *, struct rib *); +int zsend_router_id_update(struct zserv *, struct prefix *); extern pid_t pid; extern pid_t old_pid; |