diff options
Diffstat (limited to 'include/linux/tcp.h')
-rw-r--r-- | include/linux/tcp.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 4e1d2283e3cc..f28408c07dc2 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h | |||
@@ -162,6 +162,8 @@ struct tcp_sock { | |||
162 | u32 rcv_tstamp; /* timestamp of last received ACK (for keepalives) */ | 162 | u32 rcv_tstamp; /* timestamp of last received ACK (for keepalives) */ |
163 | u32 lsndtime; /* timestamp of last sent data packet (for restart window) */ | 163 | u32 lsndtime; /* timestamp of last sent data packet (for restart window) */ |
164 | 164 | ||
165 | u32 tsoffset; /* timestamp offset */ | ||
166 | |||
165 | struct list_head tsq_node; /* anchor in tsq_tasklet.head list */ | 167 | struct list_head tsq_node; /* anchor in tsq_tasklet.head list */ |
166 | unsigned long tsq_flags; | 168 | unsigned long tsq_flags; |
167 | 169 | ||
@@ -246,7 +248,6 @@ struct tcp_sock { | |||
246 | u32 sacked_out; /* SACK'd packets */ | 248 | u32 sacked_out; /* SACK'd packets */ |
247 | u32 fackets_out; /* FACK'd packets */ | 249 | u32 fackets_out; /* FACK'd packets */ |
248 | u32 tso_deferred; | 250 | u32 tso_deferred; |
249 | u32 bytes_acked; /* Appropriate Byte Counting - RFC3465 */ | ||
250 | 251 | ||
251 | /* from STCP, retrans queue hinting */ | 252 | /* from STCP, retrans queue hinting */ |
252 | struct sk_buff* lost_skb_hint; | 253 | struct sk_buff* lost_skb_hint; |
@@ -354,6 +355,7 @@ struct tcp_timewait_sock { | |||
354 | u32 tw_rcv_nxt; | 355 | u32 tw_rcv_nxt; |
355 | u32 tw_snd_nxt; | 356 | u32 tw_snd_nxt; |
356 | u32 tw_rcv_wnd; | 357 | u32 tw_rcv_wnd; |
358 | u32 tw_ts_offset; | ||
357 | u32 tw_ts_recent; | 359 | u32 tw_ts_recent; |
358 | long tw_ts_recent_stamp; | 360 | long tw_ts_recent_stamp; |
359 | #ifdef CONFIG_TCP_MD5SIG | 361 | #ifdef CONFIG_TCP_MD5SIG |