diff options
author | ajs <ajs> | 2005-03-30 16:33:13 +0000 |
---|---|---|
committer | ajs <ajs> | 2005-03-30 16:33:13 +0000 |
commit | 2da40f4919f6268d4935c42a358739ffdf3a48dc (patch) | |
tree | aa40f9570647e8631ed5d74371f9c11bec25a98f /zebra/irdp.h | |
parent | a608bbf27b48b7bd5e63f1c46380a1c5288ba48a (diff) |
2005-03-30 Andrew J. Schorr <ajschorr@alumni.princeton.edu>
* irdp.h: Add prototype for irdp_sock_init, and fix protos for
other irdp_* functions.
* irdp_interface.c: (irdp_if_start) If irdp_sock is negative,
call irdp_sock_init to create the IRDP socket.
(irdp_if_init) Rename to irdp_init().
(get_iflist_ifp) Remove function that is a duplicate of
if_lookup_by_index.
(*) Make many functions static. And remove superfluous "\n" from
several zlog messages.
* irdp_main.c: (irdp_init) Remove function that used to call
irdp_if_init() and irdp_sock_init(), since we will now create
the socket only upon first use.
(irdp_sock_init) Do not update global irdp_sock variable, just
return the fd and assume that the caller will do so. If setsockopt
calls fail, close the socket before returning -1.
(*) Make many functions static.
* irdp_packet.c: Initialize irdp_sock to -1.
(irdp_read_raw) Call standard library function if_lookup_by_index
instead of get_iflist_ifp.
(irdp_recvmsg) Should be static, not global.
Diffstat (limited to 'zebra/irdp.h')
-rw-r--r-- | zebra/irdp.h | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/zebra/irdp.h b/zebra/irdp.h index 88453e98..1f0c1ecd 100644 --- a/zebra/irdp.h +++ b/zebra/irdp.h @@ -142,12 +142,9 @@ struct Adv int pref; }; -void irdp_init(); -void irdp_finish(); -void irdp_config_write (struct vty *, struct interface *); -#endif /* _IRDP_H */ - - - - +extern void irdp_init(void); +extern int irdp_sock_init(void); +extern void irdp_finish(void); +extern void irdp_config_write (struct vty *, struct interface *); +#endif /* _IRDP_H */ |