Skip to content
Discussion options

You must be logged in to vote

The retransmissions information is taken from the TCP Info, but iperf3 does not support Windows TCP info as shown by the has_tcpinfo() code below. This may be just because iperf3 is not supported officially by iperf3. To add the support, CygWin should support TCP Info. At least in the past there were issues with this, but it may be that now CygWin doe support TCP info. If this si the case, then maybe the support can be added.

iperf/src/tcp_info.c

Lines 60 to 68 in 28976ad

int
has_tcpinfo(void)
{
#if (defined(linux) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)) \
&& defined(TCP_INFO)
return 1;
#else
return 0;
#endif

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by citytoast
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants