aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/tcp.h
diff options
context:
space:
mode:
authorPavel Emelyanov <xemul@parallels.com>2012-05-09 21:49:41 -0400
committerDavid S. Miller <davem@davemloft.net>2012-05-10 23:24:35 -0400
commit292e8d8c853889140ed77b7b37c66979b13080ae (patch)
tree7b5c1e110d68904277826e13c9daed638fef618d /include/net/tcp.h
parent74e04aca1abb8d697ca88e472a2d08dfbe19a0e1 (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.h3
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
433void tcp_connect_init(struct sock *sk); 433void tcp_connect_init(struct sock *sk);
434void tcp_finish_connect(struct sock *sk, struct sk_buff *skb); 434void tcp_finish_connect(struct sock *sk, struct sk_buff *skb);
435int __must_check tcp_queue_rcv(struct sock *sk, struct sk_buff *skb, 435int 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 */
439extern __u32 syncookie_secret[2][16-4+SHA_DIGEST_WORDS]; 438extern __u32 syncookie_secret[2][16-4+SHA_DIGEST_WORDS];