From 9831e5916f6956377739f948869d377b091f5c92 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Sat, 5 Jun 2004 09:58:23 +0000 Subject: Staticized lots of local functions. --- proto/bgp/bgp.c | 2 +- proto/ospf/dbdes.c | 2 +- proto/ospf/iface.c | 6 +++--- proto/ospf/neighbor.c | 3 +-- proto/ospf/packet.c | 2 +- proto/ospf/topology.c | 4 ++-- 6 files changed, 9 insertions(+), 10 deletions(-) (limited to 'proto') diff --git a/proto/bgp/bgp.c b/proto/bgp/bgp.c index 9258d14..cedd223 100644 --- a/proto/bgp/bgp.c +++ b/proto/bgp/bgp.c @@ -76,7 +76,7 @@ static void bgp_connect(struct bgp_proto *p); static void bgp_initiate(struct bgp_proto *p); static void bgp_setup_listen_sk(void); -void +static void bgp_close(struct bgp_proto *p UNUSED) { ASSERT(bgp_counter); diff --git a/proto/ospf/dbdes.c b/proto/ospf/dbdes.c index bd78750..5b45544 100644 --- a/proto/ospf/dbdes.c +++ b/proto/ospf/dbdes.c @@ -147,7 +147,7 @@ ospf_dbdes_send(struct ospf_neighbor *n) } } -void +static void ospf_dbdes_reqladd(struct ospf_dbdes_packet *ps, struct ospf_neighbor *n) { struct ospf_lsa_header *plsa, lsa; diff --git a/proto/ospf/iface.c b/proto/ospf/iface.c index 70e73b9..df73295 100644 --- a/proto/ospf/iface.c +++ b/proto/ospf/iface.c @@ -16,19 +16,19 @@ char *ospf_ism[]={ "interface up", "wait timer fired", "backup seen", char *ospf_it[]={ "broadcast", "nbma", "point-to-point", "virtual link" }; -void +static void poll_timer_hook(timer *timer) { ospf_hello_send(timer, 1, NULL); } -void +static void hello_timer_hook(timer *timer) { ospf_hello_send(timer, 0, NULL); } -void +static void wait_timer_hook(timer *timer) { struct ospf_iface *ifa; diff --git a/proto/ospf/neighbor.c b/proto/ospf/neighbor.c index 1ccc276..3337aab 100644 --- a/proto/ospf/neighbor.c +++ b/proto/ospf/neighbor.c @@ -210,7 +210,7 @@ electdr(list nl) return(n); } -int +static int can_do_adj(struct ospf_neighbor *n) { struct ospf_iface *ifa; @@ -569,7 +569,6 @@ void rxmt_timer_hook(timer *timer) { struct ospf_neighbor *n = (struct ospf_neighbor *)timer->data; - struct ospf_iface *ifa = n->ifa; struct top_hash_entry *en; DBG("%s: RXMT timer fired on interface %s for neigh: %I.\n", diff --git a/proto/ospf/packet.c b/proto/ospf/packet.c index 441bf04..7bdc104 100644 --- a/proto/ospf/packet.c +++ b/proto/ospf/packet.c @@ -36,7 +36,7 @@ ospf_tx_authenticate (struct ospf_iface *ifa, struct ospf_packet *pkt) return; } -int +static int ospf_rx_authenticate (struct ospf_iface *ifa, struct ospf_packet *pkt) { int i; diff --git a/proto/ospf/topology.c b/proto/ospf/topology.c index 81d35cc..73d2ddd 100644 --- a/proto/ospf/topology.c +++ b/proto/ospf/topology.c @@ -20,7 +20,7 @@ #define HASH_LO_STEP 2 #define HASH_LO_MIN 8 -void * +static void * originate_rt_lsa_body(struct ospf_area *oa, u16 *length, struct proto_ospf *p) { struct ospf_iface *ifa; @@ -216,7 +216,7 @@ originate_rt_lsa(struct ospf_area *oa) oa->origrt=0; } -void * +static void * originate_net_lsa_body(struct ospf_iface *ifa, u16 *length, struct proto_ospf *po) { -- cgit v1.2.3