Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37750676
en ru br
ALT Linux repos
S:1.60-alt19
5.0: 1.60-alt15
4.1: 1.60-alt13
4.0: 1.60-alt13
3.0: 1.60-alt12

Group :: System/Configuration/Networking
RPM: net-tools

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Patch: net-tools-1.60-rh-statistics.patch
Download


--- net-tools-1.60/statistics.c.tcpdata	2005-04-26 10:38:10.000000000 +0200
+++ net-tools-1.60/statistics.c	2005-04-26 10:36:19.000000000 +0200
@@ -1,6 +1,6 @@
 /*
  * Copyright 1997,1999,2000 Andi Kleen. Subject to the GPL. 
- * $Id: statistics.c,v 1.14 2001/02/02 18:01:23 pb Exp $
+ * $Id: statistics.c,v 1.17 2002/04/28 15:41:01 ak Exp $
  * 19980630 - i18n - Arnaldo Carvalho de Melo <acme@conectiva.com.br> 
  * 19981113 - i18n fixes - Arnaldo Carvalho de Melo <acme@conectiva.com.br> 
  * 19990101 - added net/netstat, -t, -u, -w supprt - Bernd Eckenfels 
@@ -185,6 +185,44 @@
 			    "directly queued to user"), opt_number },
     { "SockMallocOOM", N_("Ran %lu times out of system memory during " 
 			  "packet sending"), opt_number }, 
+     { "TCPPureAcks", N_("%u acknowledgments not containing data received"), opt_number },
+     { "TCPHPAcks", N_("%u predicted acknowledgments"), opt_number },
+     { "TCPRenoRecovery", N_("%u times recovered from packet loss due to fast retransmit"), opt_number },
+     { "TCPSackRecovery", N_("%u times recovered from packet loss due to SACK data"), opt_number },
+     { "TCPSACKReneging", N_("%u bad SACKs received"), opt_number },
+     { "TCPFACKReorder", N_("Detected reordering %u times using FACK"), opt_number },
+     { "TCPSACKReorder", N_("Detected reordering %u times using SACK"), opt_number },
+     { "TCPTSReorder", N_("Detected reordering %u times using time stamp"), opt_number },
+     { "TCPRenoReorder", N_("Detected reordering %u times using reno fast retransmit"), opt_number },
+     { "TCPFullUndo", N_("%u congestion windows fully recovered"), opt_number }, 
+     { "TCPPartialUndo", N_("%u congestion windows partially recovered using Hoe heuristic"), opt_number },
+     { "TCPDSackUndo", N_("%u congestion window recovered using DSACK"), opt_number },
+     { "TCPLossUndo", N_("%u congestion windows recovered after partial ack"), opt_number },
+     { "TCPLostRetransmits", N_("%u retransmits lost"), opt_number },
+     { "TCPRenoFailures",  N_("%u timeouts after reno fast retransmit"), opt_number },
+     { "TCPSackFailures",  N_("%u timeouts after SACK recovery"), opt_number },
+     { "TCPLossFailures",  N_("%u timeouts in loss state"), opt_number },
+     { "TCPFastRetrans", N_("%u fast retransmits"), opt_number },
+     { "TCPForwardRetrans", N_("%u forward retransmits"), opt_number }, 
+     { "TCPSlowStartRetrans", N_("%u retransmits in slow start"), opt_number },
+     { "TCPTimeouts", N_("%u other TCP timeouts"), opt_number },
+     { "TCPRenoRecoveryFailed", N_("%u reno fast retransmits failed"), opt_number },
+     { "TCPSackRecoveryFail", N_("%u sack retransmits failed"), opt_number },
+     { "TCPSchedulerFailed", N_("%u times receiver scheduled too late for direct processing"), opt_number },
+     { "TCPRcvCollapsed", N_("%u packets collapsed in receive queue due to low socket buffer"), opt_number },
+     { "TCPDSACKOldSent", N_("%u DSACKs sent for old packets"), opt_number },
+     { "TCPDSACKOfoSent", N_("%u DSACKs sent for out of order packets"), opt_number },
+     { "TCPDSACKRecv", N_("%u DSACKs received"), opt_number },
+     { "TCPDSACKOfoRecv", N_("%u DSACKs for out of order packets received"), opt_number },
+     { "TCPAbortOnSyn", N_("%u connections reset due to unexpected SYN"), opt_number },
+     { "TCPAbortOnData", N_("%u connections reset due to unexpected data"), opt_number },
+     { "TCPAbortOnClose", N_("%u connections reset due to early user close"), opt_number },
+     { "TCPAbortOnMemory", N_("%u connections aborted due to memory pressure"), opt_number },
+     { "TCPAbortOnTimeout", N_("%u connections aborted due to timeout"), opt_number },
+     { "TCPAbortOnLinger", N_("%u connections aborted after user close in linger timeout"), opt_number },
+     { "TCPAbortFailed", N_("%u times unabled to send RST due to no memory"), opt_number }, 
+     { "TCPMemoryPressures", N_("TCP ran low on memory %u times"), opt_number }, 
+     { "TCPLoss", N_("%u TCP data loss events") },
 };
 
 struct tabtab {
@@ -222,7 +260,8 @@
 	    ent = bsearch(&key, tab->tab, tab->size / sizeof(struct entry),
 			  sizeof(struct entry), cmpentries);
     if (!ent) {			/* try our best */
-	printf("%*s%s: %d\n", states[state].indent, "", title, val);
+	if (val) 
+		printf("%*s%s: %d\n", states[state].indent, "", title, val);
 	return;
     }
     type = ent->type;
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin