diff options
Diffstat (limited to 'include/linux/tcp.h')
| -rw-r--r-- | include/linux/tcp.h | 21 | 
1 files changed, 1 insertions, 20 deletions
| diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 0e1da6602e05..f2bb2396853f 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h | |||
| @@ -55,22 +55,6 @@ struct tcphdr { | |||
| 55 | __u16 urg_ptr; | 55 | __u16 urg_ptr; | 
| 56 | }; | 56 | }; | 
| 57 | 57 | ||
| 58 | #define TCP_ACTION_FIN (1 << 7) | ||
| 59 | |||
| 60 | enum { | ||
| 61 | TCPF_ESTABLISHED = (1 << 1), | ||
| 62 | TCPF_SYN_SENT = (1 << 2), | ||
| 63 | TCPF_SYN_RECV = (1 << 3), | ||
| 64 | TCPF_FIN_WAIT1 = (1 << 4), | ||
| 65 | TCPF_FIN_WAIT2 = (1 << 5), | ||
| 66 | TCPF_TIME_WAIT = (1 << 6), | ||
| 67 | TCPF_CLOSE = (1 << 7), | ||
| 68 | TCPF_CLOSE_WAIT = (1 << 8), | ||
| 69 | TCPF_LAST_ACK = (1 << 9), | ||
| 70 | TCPF_LISTEN = (1 << 10), | ||
| 71 | TCPF_CLOSING = (1 << 11) | ||
| 72 | }; | ||
| 73 | |||
| 74 | /* | 58 | /* | 
| 75 | * The union cast uses a gcc extension to avoid aliasing problems | 59 | * The union cast uses a gcc extension to avoid aliasing problems | 
| 76 | * (union is compatible to any of its members) | 60 | * (union is compatible to any of its members) | 
| @@ -254,10 +238,9 @@ struct tcp_sock { | |||
| 254 | __u32 snd_wl1; /* Sequence for window update */ | 238 | __u32 snd_wl1; /* Sequence for window update */ | 
| 255 | __u32 snd_wnd; /* The window we expect to receive */ | 239 | __u32 snd_wnd; /* The window we expect to receive */ | 
| 256 | __u32 max_window; /* Maximal window ever seen from peer */ | 240 | __u32 max_window; /* Maximal window ever seen from peer */ | 
| 257 | __u32 pmtu_cookie; /* Last pmtu seen by socket */ | ||
| 258 | __u32 mss_cache; /* Cached effective mss, not including SACKS */ | 241 | __u32 mss_cache; /* Cached effective mss, not including SACKS */ | 
| 259 | __u16 xmit_size_goal; /* Goal for segmenting output packets */ | 242 | __u16 xmit_size_goal; /* Goal for segmenting output packets */ | 
| 260 | __u16 ext_header_len; /* Network protocol overhead (IP/IPv6 options) */ | 243 | /* XXX Two bytes hole, try to pack */ | 
| 261 | 244 | ||
| 262 | __u32 window_clamp; /* Maximal window to advertise */ | 245 | __u32 window_clamp; /* Maximal window to advertise */ | 
| 263 | __u32 rcv_ssthresh; /* Current window clamp */ | 246 | __u32 rcv_ssthresh; /* Current window clamp */ | 
| @@ -295,8 +278,6 @@ struct tcp_sock { | |||
| 295 | 278 | ||
| 296 | struct sk_buff_head out_of_order_queue; /* Out of order segments go here */ | 279 | struct sk_buff_head out_of_order_queue; /* Out of order segments go here */ | 
| 297 | 280 | ||
| 298 | struct tcp_func *af_specific; /* Operations which are AF_INET{4,6} specific */ | ||
| 299 | |||
| 300 | __u32 rcv_wnd; /* Current receiver window */ | 281 | __u32 rcv_wnd; /* Current receiver window */ | 
| 301 | __u32 rcv_wup; /* rcv_nxt on last window update sent */ | 282 | __u32 rcv_wup; /* rcv_nxt on last window update sent */ | 
| 302 | __u32 write_seq; /* Tail(+1) of data held in tcp send buffer */ | 283 | __u32 write_seq; /* Tail(+1) of data held in tcp send buffer */ | 
