rework route handling, move parser code to interface-ip.c, add extra options and...
[project/netifd.git] / ubus.h
1 #ifndef __NETIFD_UBUS_H
2 #define __NETIFD_UBUS_H
3
4 int netifd_ubus_init(const char *path);
5 void netifd_ubus_done(void);
6 void netifd_ubus_add_interface(struct interface *iface);
7 void netifd_ubus_remove_interface(struct interface *iface);
8 void netifd_ubus_interface_event(struct interface *iface, bool up);
9
10 #endif