diff options
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/inet_timewait_sock.h | 10 | ||||
-rw-r--r-- | include/net/tcp.h | 2 |
2 files changed, 10 insertions, 2 deletions
diff --git a/include/net/inet_timewait_sock.h b/include/net/inet_timewait_sock.h index a7e8052e2fbf..3b070352e869 100644 --- a/include/net/inet_timewait_sock.h +++ b/include/net/inet_timewait_sock.h | |||
@@ -82,6 +82,10 @@ struct inet_timewait_death_row { | |||
82 | int sysctl_max_tw_buckets; | 82 | int sysctl_max_tw_buckets; |
83 | }; | 83 | }; |
84 | 84 | ||
85 | extern void inet_twdr_hangman(unsigned long data); | ||
86 | extern void inet_twdr_twkill_work(void *data); | ||
87 | extern void inet_twdr_twcal_tick(unsigned long data); | ||
88 | |||
85 | #if (BITS_PER_LONG == 64) | 89 | #if (BITS_PER_LONG == 64) |
86 | #define INET_TIMEWAIT_ADDRCMP_ALIGN_BYTES 8 | 90 | #define INET_TIMEWAIT_ADDRCMP_ALIGN_BYTES 8 |
87 | #else | 91 | #else |
@@ -206,4 +210,10 @@ extern void __inet_twsk_kill(struct inet_timewait_sock *tw, | |||
206 | extern void __inet_twsk_hashdance(struct inet_timewait_sock *tw, | 210 | extern void __inet_twsk_hashdance(struct inet_timewait_sock *tw, |
207 | struct sock *sk, | 211 | struct sock *sk, |
208 | struct inet_hashinfo *hashinfo); | 212 | struct inet_hashinfo *hashinfo); |
213 | |||
214 | extern void inet_twsk_schedule(struct inet_timewait_sock *tw, | ||
215 | struct inet_timewait_death_row *twdr, | ||
216 | const int timeo, const int timewait_len); | ||
217 | extern void inet_twsk_deschedule(struct inet_timewait_sock *tw, | ||
218 | struct inet_timewait_death_row *twdr); | ||
209 | #endif /* _INET_TIMEWAIT_SOCK_ */ | 219 | #endif /* _INET_TIMEWAIT_SOCK_ */ |
diff --git a/include/net/tcp.h b/include/net/tcp.h index 4c4cd4fb1ed8..d489ac548e4b 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h | |||
@@ -44,8 +44,6 @@ extern struct inet_hashinfo tcp_hashinfo; | |||
44 | 44 | ||
45 | extern atomic_t tcp_orphan_count; | 45 | extern atomic_t tcp_orphan_count; |
46 | extern void tcp_time_wait(struct sock *sk, int state, int timeo); | 46 | extern void tcp_time_wait(struct sock *sk, int state, int timeo); |
47 | extern void inet_twsk_deschedule(struct inet_timewait_sock *tw, | ||
48 | struct inet_timewait_death_row *twdr); | ||
49 | 47 | ||
50 | #define MAX_TCP_HEADER (128 + MAX_HEADER) | 48 | #define MAX_TCP_HEADER (128 + MAX_HEADER) |
51 | 49 | ||