diff options
author | hasso <hasso> | 2005-01-18 13:53:33 +0000 |
---|---|---|
committer | hasso <hasso> | 2005-01-18 13:53:33 +0000 |
commit | 92365889d1f856f323af452bad76f54c15ccdf45 (patch) | |
tree | b2f01cd133b1f185d5d3e3c7f088310ff9aff621 /isisd/isis_network.c | |
parent | 6f2c27af2189794187e4c30ee70fcb9cc6cb1a3b (diff) | |
download | quagga-92365889d1f856f323af452bad76f54c15ccdf45.tar.bz2 quagga-92365889d1f856f323af452bad76f54c15ccdf45.tar.xz |
* *.c: Changed many functions to static. Some commented out
functions and some tiny related fixes. No functional changes.
Diffstat (limited to 'isisd/isis_network.c')
-rw-r--r-- | isisd/isis_network.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/isisd/isis_network.c b/isisd/isis_network.c index ed732cc7..a0df32e3 100644 --- a/isisd/isis_network.c +++ b/isisd/isis_network.c @@ -95,7 +95,7 @@ static char sock_buff[8192]; * FIXME: and the p2p multicast being ??? */ #ifdef GNU_LINUX -int +static int isis_multicast_join (int fd, int registerto, int if_num) { struct packet_mreq mreq; @@ -137,7 +137,7 @@ isis_multicast_join (int fd, int registerto, int if_num) return ISIS_OK; } -int +static int open_packet_socket (struct isis_circuit *circuit) { struct sockaddr_ll s_addr; @@ -201,7 +201,7 @@ open_packet_socket (struct isis_circuit *circuit) #else -int +static int open_bpf_dev (struct isis_circuit *circuit) { int i = 0, fd; |