X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=proto.h;h=aeb2f2433c05b7e423c0e2802a4467380fefee62;hp=d94b992e67a5109c7e9ed199d44d41c6e879e162;hb=39dbd09f5845311a41300655ffd83f0b2d7ee7e4;hpb=56b7cadaeb51a60afa5666e190906d332840d5a1;ds=sidebyside diff --git a/proto.h b/proto.h index d94b992..aeb2f24 100644 --- a/proto.h +++ b/proto.h @@ -1,7 +1,9 @@ #ifndef __NETIFD_PROTO_H #define __NETIFD_PROTO_H +struct interface; struct interface_proto_state; +struct proto_handler; enum interface_proto_event { IFPEV_UP, @@ -29,7 +31,19 @@ struct interface_proto_state { void (*free)(struct interface_proto_state *); }; -struct interface_proto_state *get_default_proto(void); +typedef struct interface_proto_state * + (*proto_attach_cb)(struct proto_handler *h, struct interface *, + struct uci_section *s); + +struct proto_handler { + struct avl_node avl; + + const char *name; + proto_attach_cb attach; +}; + +void add_proto_handler(struct proto_handler *p); +void proto_attach_interface(struct interface *iface, struct uci_section *s); int interface_proto_event(struct interface_proto_state *proto, enum interface_proto_cmd cmd, bool force);