summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@conectiva.com.br>2004-06-22 13:32:50 -0300
committerArnaldo Carvalho de Melo <acme@conectiva.com.br>2004-06-22 13:32:50 -0300
commit8a99b8d40d08d7d3ddb01e6cb5fbe6d94102543d (patch)
tree0e84e12bfbeec7dd570d19f92c3dec6d75733471 /include
parent0d072115e0b16d89f9844d0a03ee5a181e4486ae (diff)
[NET] rename struct inet_protocol to net_protocol
The poor cousins will also have registration routines, etc. Signed-off-by: Arnaldo Carvalho de Melo <acme@conectiva.com.br>
Diffstat (limited to 'include')
-rw-r--r--include/net/protocol.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/include/net/protocol.h b/include/net/protocol.h
index f67327486a9c..357691f6a45f 100644
--- a/include/net/protocol.h
+++ b/include/net/protocol.h
@@ -34,8 +34,7 @@
/* This is used to register protocols. */
-struct inet_protocol
-{
+struct net_protocol {
int (*handler)(struct sk_buff *skb);
void (*err_handler)(struct sk_buff *skb, u32 info);
int no_policy;
@@ -78,15 +77,15 @@ struct inet_protosw {
#define INET_PROTOSW_REUSE 0x01 /* Are ports automatically reusable? */
#define INET_PROTOSW_PERMANENT 0x02 /* Permanent protocols are unremovable. */
-extern struct inet_protocol *inet_protocol_base;
-extern struct inet_protocol *inet_protos[MAX_INET_PROTOS];
+extern struct net_protocol *inet_protocol_base;
+extern struct net_protocol *inet_protos[MAX_INET_PROTOS];
#if defined(CONFIG_IPV6) || defined (CONFIG_IPV6_MODULE)
extern struct inet6_protocol *inet6_protos[MAX_INET_PROTOS];
#endif
-extern int inet_add_protocol(struct inet_protocol *prot, unsigned char num);
-extern int inet_del_protocol(struct inet_protocol *prot, unsigned char num);
+extern int inet_add_protocol(struct net_protocol *prot, unsigned char num);
+extern int inet_del_protocol(struct net_protocol *prot, unsigned char num);
extern void inet_register_protosw(struct inet_protosw *p);
extern void inet_unregister_protosw(struct inet_protosw *p);