diff options
author | Pavel Emelyanov <xemul@parallels.com> | 2012-05-09 21:49:41 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-05-10 23:24:35 -0400 |
commit | 292e8d8c853889140ed77b7b37c66979b13080ae (patch) | |
tree | 7b5c1e110d68904277826e13c9daed638fef618d /include/net/tcp.h | |
parent | 74e04aca1abb8d697ca88e472a2d08dfbe19a0e1 (diff) |
tcp: Move rcvq sending to tcp_input.c
It actually works on the input queue and will use its read mem
routines, thus it's better to have in in the tcp_input.c file.
Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tcp.h')
-rw-r--r-- | include/net/tcp.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index 92faa6a7ea97..aaf5de9448c9 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h | |||
@@ -432,8 +432,7 @@ extern int tcp_disconnect(struct sock *sk, int flags); | |||
432 | 432 | ||
433 | void tcp_connect_init(struct sock *sk); | 433 | void tcp_connect_init(struct sock *sk); |
434 | void tcp_finish_connect(struct sock *sk, struct sk_buff *skb); | 434 | void tcp_finish_connect(struct sock *sk, struct sk_buff *skb); |
435 | int __must_check tcp_queue_rcv(struct sock *sk, struct sk_buff *skb, | 435 | int tcp_send_rcvq(struct sock *sk, struct msghdr *msg, size_t size); |
436 | int hdrlen, bool *fragstolen); | ||
437 | 436 | ||
438 | /* From syncookies.c */ | 437 | /* From syncookies.c */ |
439 | extern __u32 syncookie_secret[2][16-4+SHA_DIGEST_WORDS]; | 438 | extern __u32 syncookie_secret[2][16-4+SHA_DIGEST_WORDS]; |