From a1ac18c4d5b4f8f4f279efb2ae12b46258f22282 Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 28 Jun 2005 17:17:12 +0000 Subject: 2005-06-28 Paul Jakma * (global) Extern and static'ification, with related fixups of declarations, ensuring files include their own headers, etc. if_ioctl.c: (interface_info_ioctl) fix obvious arg mis-order in list loop --- zebra/zserv.h | 35 ++++++++++++++++++----------------- 1 file changed, 18 insertions(+), 17 deletions(-) (limited to 'zebra/zserv.h') diff --git a/zebra/zserv.h b/zebra/zserv.h index 66270157..8e67c605 100644 --- a/zebra/zserv.h +++ b/zebra/zserv.h @@ -85,25 +85,26 @@ struct zebra_t #define PSIZE(a) (((a) + 7) / (8)) /* Prototypes. */ -void zebra_init (); -void zebra_if_init (); -void hostinfo_get (); -void rib_init (); -void interface_list (); -void kernel_init (); -void route_read (); -void rtadv_init (); -void zebra_snmp_init (); - -int zsend_interface_add (struct zserv *, struct interface *); +extern void zebra_init (void); +extern void zebra_if_init (void); +extern void hostinfo_get (void); +extern void rib_init (void); +extern void interface_list (void); +extern void kernel_init (void); +extern void route_read (void); +extern void zebra_snmp_init (void); +extern void zebra_vty_init (void); + +extern int zsend_interface_add (struct zserv *, struct interface *); #if (defined(RTM_IFANNOUNCE) || defined(HAVE_NETLINK)) -int zsend_interface_delete (struct zserv *, struct interface *); +extern int zsend_interface_delete (struct zserv *, struct interface *); #endif -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 int zsend_interface_address (int, struct zserv *, struct interface *, + struct connected *); +extern int zsend_interface_update (int, struct zserv *, struct interface *); +extern int zsend_route_multipath (int, struct zserv *, struct prefix *, + struct rib *); +extern int zsend_router_id_update(struct zserv *, struct prefix *); extern pid_t pid; extern pid_t old_pid; -- cgit v1.2.1