1 #ifndef __NETIFD_INTERFACE_H
2 #define __NETIFD_INTERFACE_H
8 struct interface_proto_state;
10 enum interface_event {
15 enum interface_state {
22 struct interface_error {
23 struct list_head list;
25 const char *subsystem;
31 * interface configuration
34 struct list_head list;
41 enum interface_state state;
43 /* main interface that the interface is bound to */
44 struct device_user main_dev;
46 /* interface that layer 3 communication will go through */
47 struct device_user *l3_iface;
49 /* primary protocol state */
50 const struct proto_handler *proto_handler;
51 struct interface_proto_state *proto;
53 struct list_head address, routes;
55 /* errors/warnings while trying to bring up the interface */
56 struct list_head errors;
58 struct ubus_object ubus;
61 extern const struct config_param_list interface_attr_list;
63 struct interface *interface_get(const char *name);
64 struct interface *interface_alloc(const char *name, struct blob_attr *attr);
65 void interface_free(struct interface *iface);
67 void interface_set_proto_state(struct interface *iface, struct interface_proto_state *state);
69 int interface_set_up(struct interface *iface);
70 int interface_set_down(struct interface *iface);
72 int interface_add_link(struct interface *iface, struct device *llif);
73 void interface_remove_link(struct interface *iface, struct device *llif);
75 void interface_add_error(struct interface *iface, const char *subsystem,
76 const char *code, const char **data, int n_data);
78 int interface_add_address(struct interface *iface, struct device_addr *addr);
79 void interface_del_address(struct interface *iface, struct device_addr *addr);
80 void interface_del_ctx_addr(struct interface *iface, void *ctx);
82 int interface_add_route(struct interface *iface, struct device_route *route);
83 void interface_del_route(struct interface *iface, struct device_route *route);
84 void interface_del_all_routes(struct interface *iface);
86 void interface_start_pending(void);