summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-09-04 18:12:07 +0200
committerFelix Fietkau <nbd@openwrt.org>2011-09-04 18:12:07 +0200
commitd06540fec1150b2046ae4929265e9d38673c5ceb (patch)
tree5811d31e7cb6c159bdf48715d030216b8626db75 /proto.h
parentfeec10d799b5a2e1d591102cf966344238818480 (diff)
downloadnetifd-d06540fec1150b2046ae4929265e9d38673c5ceb.tar.gz
remove an unnecessary typedef
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/proto.h b/proto.h
index 332745c..c59b976 100644
--- a/proto.h
+++ b/proto.h
@@ -31,15 +31,14 @@ struct interface_proto_state {
void (*free)(struct interface_proto_state *);
};
-typedef struct interface_proto_state *
- (*proto_attach_cb)(const struct proto_handler *h, struct interface *,
- struct uci_section *s);
struct proto_handler {
struct avl_node avl;
const char *name;
- proto_attach_cb attach;
+
+ struct interface_proto_state *(*attach)(const struct proto_handler *h,
+ struct interface *, struct uci_section *s);
};
void add_proto_handler(struct proto_handler *p);