Will iperf3 support poll or epoll in the future? #1253
Replies: 3 comments 2 replies
-
What problem are you trying to solve by switching from select() to poll()? I understand that there are a number of ways that poll() is "better" but I'm trying to see which, if any, are applicable to iperf3 and whether it's worth the effort to do this change. Thanks! |
Beta Was this translation helpful? Give feedback.
-
Also with select we are bounded to FD_SETSIZE value limitation (1024) which means there is not possible to have more than 500 parallel flows even if we change iperf's internal max value. |
Beta Was this translation helpful? Give feedback.
-
We have discussed this, but have not looked into it yet. We're going to be looking into how we use select, since there have been a few recent changes to it. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Recently I tried to rewrite 'select' in iperf3 to 'poll' or 'epoll'.
Will iperf3 officially have this plan?
Beta Was this translation helpful? Give feedback.
All reactions