X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=proto.h;h=fd9a0f8af90ba609414e9de7a4be1a50308318cf;hp=92cef0162432d58c57023c92654ce9c991d37625;hb=3e22e5b6bddce74aa7b3ca92ff0f089ac9b59ccb;hpb=d5202486636818e3ff48ede9d3e06c886c659c0a diff --git a/proto.h b/proto.h index 92cef01..fd9a0f8 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, @@ -13,8 +15,13 @@ enum interface_proto_cmd { PROTO_CMD_TEARDOWN, }; +enum { + PROTO_FLAG_IMMEDIATE = (1 << 0), +}; + struct interface_proto_state { struct interface *iface; + unsigned int flags; /* filled in by the protocol user */ void (*proto_event)(struct interface_proto_state *, enum interface_proto_event ev); @@ -24,6 +31,21 @@ 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); +struct proto_handler *get_proto_handler(const char *name); +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); #endif