summaryrefslogtreecommitdiff
path: root/interface.c
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2018-06-29 05:23:14 +0200
committerAlexander Couzens <lynxis@fe80.eu>2018-07-05 02:45:20 +0200
commit57f87ad89b38d1ea574c39a2d720747120dcc5fb (patch)
treed1a8265d7180b26177466a975ed8413023e0bbef /interface.c
parent03785fb09734be05a721318d2b5378ae1656f64c (diff)
downloadnetifd-57f87ad89b38d1ea574c39a2d720747120dcc5fb.tar.gz
Introduce new interface event "create" (IFEV_CREATE)
"create" will be called before the proto handlers initialised. Acked-by: Hans Dedecker <dedeckeh@gmail.com> Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Diffstat (limited to 'interface.c')
-rw-r--r--interface.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/interface.c b/interface.c
index 2a23984..400c605 100644
--- a/interface.c
+++ b/interface.c
@@ -1275,6 +1275,7 @@ interface_update(struct vlist_tree *tree, struct vlist_node *node_new,
set_config_state(if_old, IFC_REMOVE);
} else if (node_new) {
D(INTERFACE, "Create interface '%s'\n", if_new->name);
+ interface_event(if_new, IFEV_CREATE);
proto_init_interface(if_new, if_new->config);
interface_claim_device(if_new);
netifd_ubus_add_interface(if_new);