diff options
author | Arnaldo Carvalho de Melo <acme@mandriva.com> | 2005-08-09 23:45:21 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-08-29 18:56:03 -0400 |
commit | 64cf1e5d8b5f88d56509260e08fa0d8314277350 (patch) | |
tree | 1b2decb48c52d8f3f3abe04ffb8e0dca80f0747a /include/linux/dccp.h | |
parent | 696ab2d3bffc746fb8cf3712f066d42b9886aeed (diff) |
[DCCP]: Finish the TIMEWAIT minisock support
Using most of the infrastructure TCP uses, with a dccp_death_row,
etc. As per my current interpretation of the draft what we have with
this changeset seems to be all we need (or very close to it 8)).
Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/dccp.h')
-rw-r--r-- | include/linux/dccp.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/dccp.h b/include/linux/dccp.h index 431d58923ba9..3dccdd5108b5 100644 --- a/include/linux/dccp.h +++ b/include/linux/dccp.h | |||
@@ -194,6 +194,7 @@ enum { | |||
194 | #include <linux/workqueue.h> | 194 | #include <linux/workqueue.h> |
195 | 195 | ||
196 | #include <net/inet_connection_sock.h> | 196 | #include <net/inet_connection_sock.h> |
197 | #include <net/inet_timewait_sock.h> | ||
197 | #include <net/sock.h> | 198 | #include <net/sock.h> |
198 | #include <net/tcp_states.h> | 199 | #include <net/tcp_states.h> |
199 | #include <net/tcp.h> | 200 | #include <net/tcp.h> |
@@ -354,6 +355,8 @@ static inline struct dccp_request_sock *dccp_rsk(const struct request_sock *req) | |||
354 | return (struct dccp_request_sock *)req; | 355 | return (struct dccp_request_sock *)req; |
355 | } | 356 | } |
356 | 357 | ||
358 | extern struct inet_timewait_death_row dccp_death_row; | ||
359 | |||
357 | /* Read about the ECN nonce to see why it is 253 */ | 360 | /* Read about the ECN nonce to see why it is 253 */ |
358 | #define DCCP_MAX_ACK_VECTOR_LEN 253 | 361 | #define DCCP_MAX_ACK_VECTOR_LEN 253 |
359 | 362 | ||