diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-06-10 14:31:02 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-06-10 14:40:22 +0200 |
commit | d095bf24cf7879150d008c23998676bfedebbde6 (patch) | |
tree | ab7f853f8a7ba00039cd714144a738f8c0927f28 /proto.h | |
parent | bac6f28ce1d9abc381c2f85c32bcd37c33cd00c8 (diff) |
config: use the new uci_blob library code
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -55,13 +55,13 @@ struct proto_handler { unsigned int flags; const char *name; - const struct config_param_list *config_params; + const struct uci_blob_param_list *config_params; struct interface_proto_state *(*attach)(const struct proto_handler *h, struct interface *iface, struct blob_attr *attr); }; -extern const struct config_param_list proto_ip_attr; +extern const struct uci_blob_param_list proto_ip_attr; void add_proto_handler(struct proto_handler *p); void proto_init_interface(struct interface *iface, struct blob_attr *attr); |