aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/net.h
diff options
context:
space:
mode:
authorStephen Hemminger <shemminger@osdl.org>2006-08-10 00:03:17 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2006-09-22 17:54:20 -0400
commitf0fd27d42e39b91f85e1840ec49b072fd6c545b8 (patch)
treeaa4d1cbe1671507e4d0ec6787076db92a0ee5926 /include/linux/net.h
parent55737fda0bc73cb20f702301d8b52938a5a43630 (diff)
[NET]: sock_register interface changes
The sock_register() doesn't change the family, so the protocols can define it read-only. No caller ever checks return value from sock_unregister() Signed-off-by: Stephen Hemminger <shemminger@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/net.h')
-rw-r--r--include/linux/net.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/net.h b/include/linux/net.h
index 1bd76327ee2b..c257f716e00f 100644
--- a/include/linux/net.h
+++ b/include/linux/net.h
@@ -176,8 +176,8 @@ struct iovec;
176struct kvec; 176struct kvec;
177 177
178extern int sock_wake_async(struct socket *sk, int how, int band); 178extern int sock_wake_async(struct socket *sk, int how, int band);
179extern int sock_register(struct net_proto_family *fam); 179extern int sock_register(const struct net_proto_family *fam);
180extern int sock_unregister(int family); 180extern void sock_unregister(int family);
181extern int sock_create(int family, int type, int proto, 181extern int sock_create(int family, int type, int proto,
182 struct socket **res); 182 struct socket **res);
183extern int sock_create_kern(int family, int type, int proto, 183extern int sock_create_kern(int family, int type, int proto,