diff options
author | Steven Barth <steven@midlink.org> | 2013-10-15 18:18:16 +0200 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2013-10-15 18:18:16 +0200 |
commit | 0fa1231d1296d82d8ee75dbe024c9a4509e784fe (patch) | |
tree | 78741f9188dd77b5c773956b86e89460de2f3816 /src/ubus.c | |
parent | 491200f3ffae5c9599124e0b2eccbdf566de4cf4 (diff) |
ubus: register subscriber
Diffstat (limited to 'src/ubus.c')
-rw-r--r-- | src/ubus.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -213,7 +213,6 @@ static int handle_update(_unused struct ubus_context *ctx, _unused struct ubus_o static void subscribe_netifd(void) { - netifd.cb = handle_update; ubus_subscribe(ubus, &netifd, objid); ubus_invoke(ubus, objid, "dump", NULL, handle_dump, NULL, 0); } @@ -353,6 +352,9 @@ int init_ubus(void) return -1; } + netifd.cb = handle_update; + ubus_register_subscriber(ubus, &netifd); + ubus_add_uloop(ubus); ubus_add_object(ubus, &main_object); ubus_register_event_handler(ubus, &event_handler, "ubus.object.add"); |