File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -476,7 +476,7 @@ pub struct TcpInfo {
476
476
/// `TCP_CA_DISORDER`, `TCP_CA_CWR`, `TCP_CA_RECOVERY`,
477
477
/// `TCP_CA_LOSS`
478
478
pub ca_state : u8 ,
479
- ///
479
+ /// Number of retransmits since the last ACK
480
480
pub retransmits : u8 ,
481
481
pub probes : u8 ,
482
482
pub backoff : u8 ,
@@ -506,7 +506,7 @@ pub struct TcpInfo {
506
506
pub sacked : u32 ,
507
507
/// Number of segments that have been lost
508
508
pub lost : u32 ,
509
- /// Number of segments that have been retransmitted
509
+ /// Number of segments that are currently being retransmitted
510
510
pub retrans : u32 ,
511
511
/// Number of segments that have been FACKed
512
512
pub fackets : u32 ,
@@ -538,6 +538,7 @@ pub struct TcpInfo {
538
538
pub rcv_rtt : u32 ,
539
539
pub rcv_space : u32 ,
540
540
541
+ /// Number of segments that have been retransmitted during lifetime of the socket
541
542
pub total_retrans : u32 ,
542
543
543
544
pub pacing_rate : u64 ,
You can’t perform that action at this time.
0 commit comments