summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2013-10-15 13:43:45 +0200
committerSteven Barth <steven@midlink.org>2013-10-15 13:43:45 +0200
commitab6cef402c4f5982fddf72a8633d2a463e8d9006 (patch)
tree786827ae48bba11f2abb05151b008322149a217c /src
parent8cc7121600eab0e28495e48f559d4886ba879c95 (diff)
Fix ubus reload detection
Diffstat (limited to 'src')
-rw-r--r--src/config.c6
-rw-r--r--src/odhcpd.c3
-rw-r--r--src/odhcpd.h4
3 files changed, 8 insertions, 5 deletions
diff --git a/src/config.c b/src/config.c
index 4aaded9..e31740b 100644
--- a/src/config.c
+++ b/src/config.c
@@ -499,6 +499,10 @@ void odhcpd_run(void)
signal(SIGHUP, set_stop);
signal(SIGINT, set_stop);
+#ifdef WITH_UBUS
+ init_ubus();
+#endif
+
do {
do_reload = uloop_cancelled = false;
@@ -558,7 +562,7 @@ void odhcpd_run(void)
list_for_each_entry_safe(i, n, &interfaces, head) {
- if (i->inuse && !i->ignore) {
+ if (i->inuse) {
// Resolve hybrid mode
if (i->dhcpv6 == RELAYD_HYBRID)
i->dhcpv6 = (master && master->dhcpv6 == RELAYD_RELAY) ?
diff --git a/src/odhcpd.c b/src/odhcpd.c
index acedaec..2859907 100644
--- a/src/odhcpd.c
+++ b/src/odhcpd.c
@@ -83,9 +83,6 @@ int main()
if (init_dhcpv4())
return 4;
- if (init_ubus())
- return 4;
-
odhcpd_run();
return 0;
}
diff --git a/src/odhcpd.h b/src/odhcpd.h
index fb3db37..531a0ff 100644
--- a/src/odhcpd.h
+++ b/src/odhcpd.h
@@ -188,9 +188,12 @@ void odhcpd_hexlify(char *dst, const uint8_t *src, size_t len);
int config_parse_interface(struct blob_attr *b, const char *iname, bool overwrite);
+#ifdef WITH_UBUS
+int init_ubus(void);
const char* ubus_get_ifname(const char *name);
void ubus_apply_network(void);
bool ubus_has_prefix(const char *name, const char *ifname);
+#endif
// Exported module initializers
@@ -198,7 +201,6 @@ int init_router(void);
int init_dhcpv6(void);
int init_dhcpv4(void);
int init_ndp(void);
-int init_ubus(void);
int setup_router_interface(struct interface *iface, bool enable);
int setup_dhcpv6_interface(struct interface *iface, bool enable);