summaryrefslogtreecommitdiffstats
path: root/ospf6d/ospf6_flood.c
diff options
context:
space:
mode:
authorStephen Hemminger <stephen.hemminger@vyatta.com>2008-12-18 17:19:46 -0800
committerStephen Hemminger <stephen.hemminger@vyatta.com>2008-12-18 17:19:46 -0800
commit3111ae93268b1af36e469b1f7744e821f27f0a30 (patch)
tree0c6282fe70d9f0df38ec5136a046ce14311c0d42 /ospf6d/ospf6_flood.c
parent0b49f5d475aa5503e60d8dbdc9b4dcc8f6a614ec (diff)
parent177fec0b82d18dc92fe40b51bf1a4a294fb9a7ff (diff)
downloadquagga-3111ae93268b1af36e469b1f7744e821f27f0a30.tar.bz2
quagga-3111ae93268b1af36e469b1f7744e821f27f0a30.tar.xz
Merge branch 'jenner' of suva.vyatta.com:/git/vyatta-quagga into jenner
Diffstat (limited to 'ospf6d/ospf6_flood.c')
-rw-r--r--ospf6d/ospf6_flood.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/ospf6d/ospf6_flood.c b/ospf6d/ospf6_flood.c
index 39b7c1f3..8c460293 100644
--- a/ospf6d/ospf6_flood.c
+++ b/ospf6d/ospf6_flood.c
@@ -241,7 +241,7 @@ ospf6_install_lsa (struct ospf6_lsa *lsa)
/* RFC2740 section 3.5.2. Sending Link State Update packets */
/* RFC2328 section 13.3 Next step in the flooding procedure */
-void
+static void
ospf6_flood_interface (struct ospf6_neighbor *from,
struct ospf6_lsa *lsa, struct ospf6_interface *oi)
{
@@ -387,7 +387,7 @@ ospf6_flood_interface (struct ospf6_neighbor *from,
}
}
-void
+static void
ospf6_flood_area (struct ospf6_neighbor *from,
struct ospf6_lsa *lsa, struct ospf6_area *oa)
{
@@ -410,7 +410,7 @@ ospf6_flood_area (struct ospf6_neighbor *from,
}
}
-void
+static void
ospf6_flood_process (struct ospf6_neighbor *from,
struct ospf6_lsa *lsa, struct ospf6 *process)
{
@@ -440,7 +440,7 @@ ospf6_flood (struct ospf6_neighbor *from, struct ospf6_lsa *lsa)
ospf6_flood_process (from, lsa, ospf6);
}
-void
+static void
ospf6_flood_clear_interface (struct ospf6_lsa *lsa, struct ospf6_interface *oi)
{
struct listnode *node, *nnode;
@@ -463,7 +463,7 @@ ospf6_flood_clear_interface (struct ospf6_lsa *lsa, struct ospf6_interface *oi)
}
}
-void
+static void
ospf6_flood_clear_area (struct ospf6_lsa *lsa, struct ospf6_area *oa)
{
struct listnode *node, *nnode;
@@ -485,7 +485,7 @@ ospf6_flood_clear_area (struct ospf6_lsa *lsa, struct ospf6_area *oa)
}
}
-void
+static void
ospf6_flood_clear_process (struct ospf6_lsa *lsa, struct ospf6 *process)
{
struct listnode *node, *nnode;
@@ -676,7 +676,7 @@ ospf6_acknowledge_lsa_allother (struct ospf6_lsa *lsa, int ismore_recent,
early of ospf6_receive_lsa () */
}
-void
+static void
ospf6_acknowledge_lsa (struct ospf6_lsa *lsa, int ismore_recent,
struct ospf6_neighbor *from)
{
@@ -1013,7 +1013,7 @@ config_write_ospf6_debug_flood (struct vty *vty)
}
void
-install_element_ospf6_debug_flood ()
+install_element_ospf6_debug_flood (void)
{
install_element (ENABLE_NODE, &debug_ospf6_flooding_cmd);
install_element (ENABLE_NODE, &no_debug_ospf6_flooding_cmd);