diff options
author | Pavel Emelyanov <xemul@parallels.com> | 2012-04-19 07:40:01 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-21 23:52:25 +0400 |
commit | 370816aef0c5436c2adbec3966038f36ca326933 (patch) | |
tree | 665f8b3b0818aa7aa4f653072d89d1dcfb91a55f /include/net/tcp.h | |
parent | 4a17fd5229c1b6066aa478f6b690f8293ce811a1 (diff) | |
download | linux-370816aef0c5436c2adbec3966038f36ca326933.tar.xz |
tcp: Move code around
This is just the preparation patch, which makes the needed for
TCP repair code ready for use.
Signed-off-by: Pavel Emelyanov <xemul@parallels.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, 3 insertions, 0 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index d5984e353826..633fde27f24b 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -435,6 +435,9 @@ extern struct sk_buff * tcp_make_synack(struct sock *sk, struct dst_entry *dst, struct request_values *rvp); extern int tcp_disconnect(struct sock *sk, int flags); +void tcp_connect_init(struct sock *sk); +void tcp_finish_connect(struct sock *sk, struct sk_buff *skb); +void tcp_queue_rcv(struct sock *sk, struct sk_buff *skb, int hdrlen); /* From syncookies.c */ extern __u32 syncookie_secret[2][16-4+SHA_DIGEST_WORDS]; |