aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/tcp.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/tcp.h')
-rw-r--r--include/net/tcp.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h
index 590e01a476ac..0cd7d2c65dc0 100644
--- a/include/net/tcp.h
+++ b/include/net/tcp.h
@@ -698,7 +698,12 @@ struct tcp_skb_cb {
698 } header; /* For incoming frames */ 698 } header; /* For incoming frames */
699 __u32 seq; /* Starting sequence number */ 699 __u32 seq; /* Starting sequence number */
700 __u32 end_seq; /* SEQ + FIN + SYN + datalen */ 700 __u32 end_seq; /* SEQ + FIN + SYN + datalen */
701 __u32 when; /* used to compute rtt's */ 701 union {
702 /* used in output path */
703 __u32 when; /* used to compute rtt's */
704 /* used in input path */
705 __u32 tcp_tw_isn; /* isn chosen by tcp_timewait_state_process() */
706 };
702 __u8 tcp_flags; /* TCP header flags. (tcp[13]) */ 707 __u8 tcp_flags; /* TCP header flags. (tcp[13]) */
703 708
704 __u8 sacked; /* State flags for SACK/FACK. */ 709 __u8 sacked; /* State flags for SACK/FACK. */