summaryrefslogtreecommitdiffhomepage
path: root/src/ndp.c
diff options
context:
space:
mode:
authorHans Dedecker <dedeckeh@gmail.com>2017-03-28 16:44:50 +0200
committerHans Dedecker <dedeckeh@gmail.com>2017-03-29 11:35:40 +0200
commit6eb1e01b1a7cc5e73829bf2a050ba2cff57cbebd (patch)
tree45c76dd7d4cd33b0d03012df87eb4b83cfabff13 /src/ndp.c
parenteea7d037b93020dd5d5d2e5a698e88650a0f0912 (diff)
ndp: code cleanup
Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
Diffstat (limited to 'src/ndp.c')
-rw-r--r--src/ndp.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/ndp.c b/src/ndp.c
index e201ac9..3b472de 100644
--- a/src/ndp.c
+++ b/src/ndp.c
@@ -33,9 +33,8 @@
#include <netlink/socket.h>
#include <netlink/attr.h>
-#include "router.h"
#include "dhcpv6.h"
-#include "ndp.h"
+#include "odhcpd.h"
struct event_socket {
struct odhcpd_event ev;
@@ -395,7 +394,7 @@ static void check_addr_updates(struct interface *iface)
}
}
-void setup_addr_for_relaying(struct in6_addr *addr, struct interface *iface, bool add)
+static void setup_addr_for_relaying(struct in6_addr *addr, struct interface *iface, bool add)
{
struct interface *c;
char ipbuf[INET6_ADDRSTRLEN];
@@ -417,7 +416,7 @@ void setup_addr_for_relaying(struct in6_addr *addr, struct interface *iface, boo
}
}
-void setup_ping6(struct in6_addr *addr, struct interface *iface)
+static void setup_ping6(struct in6_addr *addr, struct interface *iface)
{
struct interface *c;