X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=proto.h;h=fd9a0f8af90ba609414e9de7a4be1a50308318cf;hp=776cc364d3626bc74c3f6feff469ae4948c13a44;hb=a9030987750fefa9152539edeb44d5dd0a22cbcf;hpb=71427e54fa17dacd1ace6077bffb9f9b9d456ebb diff --git a/proto.h b/proto.h index 776cc36..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, @@ -29,14 +31,19 @@ struct interface_proto_state { void (*free)(struct interface_proto_state *); }; +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; - struct interface_proto_state * (*attach)(struct proto_handler *h, struct interface *); + 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);