diff options
author | Arnaldo Carvalho de Melo <acme@mandriva.com> | 2006-03-21 01:00:37 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-03-21 01:00:37 -0500 |
commit | 72478873571d869906f7a250b09e12fa5b65e321 (patch) | |
tree | 562e6179922a5eef9c1f3eb7b1bf3813a6e53545 /net/dccp/ccids | |
parent | c25a18ba347f091d1ce620ba33e6772b60a528e1 (diff) |
[DCCP] ipv6: Add missing ipv6 control socket
I guess I forgot to add it, nah, now it just works:
18:04:33.274066 IP6 ::1.1476 > ::1.5001: request (service=0)
18:04:33.334482 IP6 ::1.5001 > ::1.1476: reset (code=bad_service_code)
Ditched IP_DCCP_UNLOAD_HACK, as now we would have to do it for both
IPv6 and IPv4, so I'll come up with another way for freeing the
control sockets in upcoming changesets.
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dccp/ccids')
-rw-r--r-- | net/dccp/ccids/ccid3.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/net/dccp/ccids/ccid3.c b/net/dccp/ccids/ccid3.c index ff6a0d7076ef..ff426a900999 100644 --- a/net/dccp/ccids/ccid3.c +++ b/net/dccp/ccids/ccid3.c | |||
@@ -1211,15 +1211,6 @@ module_init(ccid3_module_init); | |||
1211 | 1211 | ||
1212 | static __exit void ccid3_module_exit(void) | 1212 | static __exit void ccid3_module_exit(void) |
1213 | { | 1213 | { |
1214 | #ifdef CONFIG_IP_DCCP_UNLOAD_HACK | ||
1215 | /* | ||
1216 | * Hack to use while developing, so that we get rid of the control | ||
1217 | * sock, that is what keeps a refcount on dccp.ko -acme | ||
1218 | */ | ||
1219 | extern void dccp_ctl_sock_exit(void); | ||
1220 | |||
1221 | dccp_ctl_sock_exit(); | ||
1222 | #endif | ||
1223 | ccid_unregister(&ccid3); | 1214 | ccid_unregister(&ccid3); |
1224 | 1215 | ||
1225 | if (ccid3_tx_hist != NULL) { | 1216 | if (ccid3_tx_hist != NULL) { |