X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fodhcpd.git;a=blobdiff_plain;f=src%2Fconfig.c;h=6c0954101386b8d23d0620313815f5accc7b9f23;hp=f008c1229b285b138893d0221b350fe4d67cd75d;hb=16cee36ff3cf1895f87368709dabd3ffd5f24e4f;hpb=132e49148b4808b3839757d4867e42be189199aa diff --git a/src/config.c b/src/config.c index f008c12..6c09541 100644 --- a/src/config.c +++ b/src/config.c @@ -273,8 +273,6 @@ int config_parse_interface(void *data, size_t len, const char *name, bool overwr iface = calloc(1, sizeof(*iface)); strncpy(iface->name, name, sizeof(iface->name) - 1); list_add(&iface->head, &interfaces); - } else if (overwrite) { - clean_interface(iface); } const char *ifname = NULL; @@ -298,9 +296,6 @@ int config_parse_interface(void *data, size_t len, const char *name, bool overwr iface->inuse = true; - if (overwrite) - clean_interface(iface); - if ((c = tb[IFACE_ATTR_DYNAMICDHCP])) iface->no_dynamic_dhcp = !blobmsg_get_bool(c); @@ -503,6 +498,10 @@ void odhcpd_reload(void) free(l); } + struct interface *master = NULL, *i, *n; + list_for_each_entry(i, &interfaces, head) + clean_interface(i); + struct uci_package *dhcp = NULL; if (!uci_load(uci, "dhcp", &dhcp)) { struct uci_element *e; @@ -521,12 +520,12 @@ void odhcpd_reload(void) } } + #ifdef WITH_UBUS ubus_apply_network(); #endif // Evaluate hybrid mode for master - struct interface *master = NULL, *i, *n; list_for_each_entry(i, &interfaces, head) { if (!i->master) continue; @@ -570,7 +569,6 @@ void odhcpd_reload(void) setup_dhcpv6_interface(i, true); setup_ndp_interface(i, true); setup_dhcpv4_interface(i, true); - i->inuse = false; } else { close_interface(i); }