remove the uci dependency from protocol handlers
[project/netifd.git] / proto.h
diff --git a/proto.h b/proto.h
index 776cc36..364a967 100644 (file)
--- 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,15 +31,20 @@ struct interface_proto_state {
        void (*free)(struct interface_proto_state *);
 };
 
+
 struct proto_handler {
        struct avl_node avl;
 
        const char *name;
-       struct interface_proto_state * (*attach)(struct proto_handler *h, struct interface *);
+       const struct config_param_list *config_params;
+
+       struct interface_proto_state *(*attach)(const struct proto_handler *h,
+               struct interface *iface, struct blob_attr *attr);
 };
 
 void add_proto_handler(struct proto_handler *p);
-void proto_attach_interface(struct interface *iface, struct uci_section *s);
+void proto_init_interface(struct interface *iface, struct blob_attr *attr);
+void proto_attach_interface(struct interface *iface, const char *proto_name);
 int interface_proto_event(struct interface_proto_state *proto,
                          enum interface_proto_cmd cmd, bool force);