I know that netstat -s
exists on Windows, but it displays way less informations than on Linux/OS X.
It only gives 8 counters about TCP, while on Linux it's more than 50.
I'm looking for any TCP-related counters such as:
Linux:
TCPDSACKOldSent
,DelayedACKLocked
,TCPOFODrop
orTCPDSACKIgnoredNoUndo
. You can get the whole set of counters viacat /proc/net/netstat
.BSD/OS X:
rcvbyteafterwin
,rcvduppack
orrcvoobyte
.
Is there a built-in tool to achieve this ? Or maybe there is a system call that would allow me to retreive such informations ?