diff options
Diffstat (limited to 'include/linux/tcp.h')
-rw-r--r-- | include/linux/tcp.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 5feb49ee9..f2be9dbaa 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h | |||
@@ -471,12 +471,18 @@ struct tcp_sock { | |||
471 | u32 mytcp_bytes_send; | 471 | u32 mytcp_bytes_send; |
472 | u32 mytcp_acked_bytes; | 472 | u32 mytcp_acked_bytes; |
473 | u32 mytcp_acked_seq_last; | 473 | u32 mytcp_acked_seq_last; |
474 | |||
475 | // add | ||
476 | int exit_slow_start_flag; | ||
474 | 477 | ||
475 | // new | 478 | // new |
476 | u32 my_ip_rtt; | 479 | u32 my_ip_rtt; |
477 | 480 | ||
481 | u32 mytcp_average_rtt; | ||
482 | |||
478 | u32 my_last_ack; | 483 | u32 my_last_ack; |
479 | u32 my_ack_seq_gap; | 484 | u32 my_ack_seq_gap; |
485 | u32 mytcp_this_rtt_count; | ||
480 | // new ended | 486 | // new ended |
481 | }; | 487 | }; |
482 | 488 | ||