diff options
Diffstat (limited to 'net/dccp/proto.c')
-rw-r--r-- | net/dccp/proto.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/net/dccp/proto.c b/net/dccp/proto.c index 1c32def26533..64806fbf44de 100644 --- a/net/dccp/proto.c +++ b/net/dccp/proto.c | |||
@@ -97,6 +97,20 @@ const char *dccp_state_name(const int state) | |||
97 | 97 | ||
98 | EXPORT_SYMBOL_GPL(dccp_state_name); | 98 | EXPORT_SYMBOL_GPL(dccp_state_name); |
99 | 99 | ||
100 | void dccp_hash(struct sock *sk) | ||
101 | { | ||
102 | inet_hash(&dccp_hashinfo, sk); | ||
103 | } | ||
104 | |||
105 | EXPORT_SYMBOL_GPL(dccp_hash); | ||
106 | |||
107 | void dccp_unhash(struct sock *sk) | ||
108 | { | ||
109 | inet_unhash(&dccp_hashinfo, sk); | ||
110 | } | ||
111 | |||
112 | EXPORT_SYMBOL_GPL(dccp_unhash); | ||
113 | |||
100 | int dccp_init_sock(struct sock *sk) | 114 | int dccp_init_sock(struct sock *sk) |
101 | { | 115 | { |
102 | struct dccp_sock *dp = dccp_sk(sk); | 116 | struct dccp_sock *dp = dccp_sk(sk); |