summaryrefslogtreecommitdiffstats
path: root/ospf6d/ospf6_zebra.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_zebra.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_zebra.c')
-rw-r--r--ospf6d/ospf6_zebra.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/ospf6d/ospf6_zebra.c b/ospf6d/ospf6_zebra.c
index 7b3d2438..a2a97d29 100644
--- a/ospf6d/ospf6_zebra.c
+++ b/ospf6d/ospf6_zebra.c
@@ -47,7 +47,7 @@ struct zclient *zclient = NULL;
struct in_addr router_id_zebra;
/* Router-id update message from zebra. */
-int
+static int
ospf6_router_id_update_zebra (int command, struct zclient *zclient,
zebra_size_t length)
{
@@ -88,7 +88,7 @@ ospf6_zebra_no_redistribute (int type)
}
/* Inteface addition message from zebra. */
-int
+static int
ospf6_zebra_if_add (int command, struct zclient *zclient, zebra_size_t length)
{
struct interface *ifp;
@@ -101,7 +101,7 @@ ospf6_zebra_if_add (int command, struct zclient *zclient, zebra_size_t length)
return 0;
}
-int
+static int
ospf6_zebra_if_del (int command, struct zclient *zclient, zebra_size_t length)
{
struct interface *ifp;
@@ -125,7 +125,7 @@ ospf6_zebra_if_del (int command, struct zclient *zclient, zebra_size_t length)
return 0;
}
-int
+static int
ospf6_zebra_if_state_update (int command, struct zclient *zclient,
zebra_size_t length)
{
@@ -142,7 +142,7 @@ ospf6_zebra_if_state_update (int command, struct zclient *zclient,
return 0;
}
-int
+static int
ospf6_zebra_if_address_update_add (int command, struct zclient *zclient,
zebra_size_t length)
{
@@ -165,7 +165,7 @@ ospf6_zebra_if_address_update_add (int command, struct zclient *zclient,
return 0;
}
-int
+static int
ospf6_zebra_if_address_update_delete (int command, struct zclient *zclient,
zebra_size_t length)
{
@@ -188,7 +188,7 @@ ospf6_zebra_if_address_update_delete (int command, struct zclient *zclient,
return 0;
}
-int
+static int
ospf6_zebra_read_ipv6 (int command, struct zclient *zclient,
zebra_size_t length)
{
@@ -318,7 +318,7 @@ DEFUN (no_router_zebra,
}
/* Zebra configuration write function. */
-int
+static int
config_write_ospf6_zebra (struct vty *vty)
{
if (! zclient->enable)
@@ -554,7 +554,7 @@ DEFUN (no_redistribute_ospf6,
}
void
-ospf6_zebra_init ()
+ospf6_zebra_init (void)
{
/* Allocate zebra structure. */
zclient = zclient_new ();
@@ -624,7 +624,7 @@ ALIAS (debug_ospf6_zebra_sendrecv,
DEBUG_STR
OSPF6_STR
"Debug connection between zebra\n"
- );
+ )
DEFUN (no_debug_ospf6_zebra_sendrecv,
@@ -661,7 +661,7 @@ ALIAS (no_debug_ospf6_zebra_sendrecv,
DEBUG_STR
OSPF6_STR
"Debug connection between zebra\n"
- );
+ )
int
config_write_ospf6_debug_zebra (struct vty *vty)
@@ -679,7 +679,7 @@ config_write_ospf6_debug_zebra (struct vty *vty)
}
void
-install_element_ospf6_debug_zebra ()
+install_element_ospf6_debug_zebra (void)
{
install_element (ENABLE_NODE, &debug_ospf6_zebra_cmd);
install_element (ENABLE_NODE, &no_debug_ospf6_zebra_cmd);