I have a server that use TCP sockets, to get number of bytes that sent/received in this socket I can count number of bytes that sent or received using that specific socket but if I use functions like TransmitPackets, then I can't get number of bytes that sent/received through that specific socket. Is there any way that I can get this information from the socket?
TransmitPackets
Windows API. And currently my only approach is avoidingTransmitPackets
because I can't get this information without a low level programming like inWireShark
. – BigBoss