| c8032570 | 04-Jun-2022 |
Dimitri Papadopoulos <[email protected]> |
Fix typos not found by codespell
Signed-off-by: Dimitri Papadopoulos <[email protected]> |
| 2b8ad3e4 | 24-May-2022 |
Dimitri Papadopoulos <[email protected]> |
Fix typos found by codespell
Signed-off-by: Dimitri Papadopoulos <[email protected]> |
| abb24a2e | 10-May-2022 |
Bruce A. Mah <[email protected]> |
Fix memory leak in an error condition.
We weren't free()-ing test->settings when we bailed out in a certain error state.
Fixes #1332. |
| b5fab649 | 03-May-2022 |
bthompson <[email protected]> |
Fix help output for some compilers
Use the "%%" format specifier in usage_longstr when the desired output is '%'.
Using the single '%' causes the '--help' output to be empty or condensed on some ve
Fix help output for some compilers
Use the "%%" format specifier in usage_longstr when the desired output is '%'.
Using the single '%' causes the '--help' output to be empty or condensed on some versions of gcc.
show more ...
|
| b97df9a9 | 29-Apr-2022 |
David Bar-On <[email protected]> |
Add debug level option to --debug |
| a8597270 | 18-Apr-2022 |
Bruce A. Mah <[email protected]> |
Fix/add documentation for new --snd-timeout flag. |
| 85b25c2e | 18-Apr-2022 |
Bruce A. Mah <[email protected]> |
Regen. |
| 8e0a54eb | 11-Apr-2022 |
Marcin Niestroj <[email protected]> |
suppress -Wunused-variable when HAVE_SENDFILE is undefined
Suppress following compiler warning when there is no HAVE_SENDFILE support:
/lib/iperf3/src/net.c: In function 'Nsendfile': /lib/iperf
suppress -Wunused-variable when HAVE_SENDFILE is undefined
Suppress following compiler warning when there is no HAVE_SENDFILE support:
/lib/iperf3/src/net.c: In function 'Nsendfile': /lib/iperf3/src/net.c:449:11: warning: unused variable 'offset' [-Wunused-variable] 449 | off_t offset; | ^~~~~~
show more ...
|
| 3ea0269f | 05-Apr-2022 |
Arseney300 <[email protected]> |
Added linux version checking in flowlabel.h The current version of src/flowlabel.h is just a copy of linux/in6.h because it conflicts with "netinet/in.h". But after linux >=v3.7 (adding uapi) this co
Added linux version checking in flowlabel.h The current version of src/flowlabel.h is just a copy of linux/in6.h because it conflicts with "netinet/in.h". But after linux >=v3.7 (adding uapi) this conflict was removed and this copy became useless. I've added a Linux version check. This fix is very useful for eg mp-tcp linux where iperf can build successfully.
show more ...
|
| 0ecdfdda | 01-Apr-2022 |
Sarah Larsen <[email protected]> |
Add test for get and set bind port and mss |
| ad05aac9 | 30-Mar-2022 |
swlars <[email protected]> |
Add note for ignoring the return value of write to disk (#1304) |
| 11fadc3f | 29-Mar-2022 |
WatcherOfTheSkies <[email protected]> |
Added bind_port (--cport option) getter/setter. |
| 515b6e9e | 25-Mar-2022 |
WatcherOfTheSkies <[email protected]> |
Added mss getter and setter.
The mss getter and setter was missing. |
| 5a6a0f7b | 18-Mar-2022 |
David Bar-On <[email protected]> |
Omit help text enhancement |
| 2a187a95 | 14-Mar-2022 |
TheRealDJ <[email protected]> |
Fixed 2 lines causing warnings in iperf_api.c (#1211)
* Fixed 2 lines causing warnings in iperf_api.c
* Changed printf format string for test->settings->bytes to %"PRIu64"
Co-authored-by: root
Fixed 2 lines causing warnings in iperf_api.c (#1211)
* Fixed 2 lines causing warnings in iperf_api.c
* Changed printf format string for test->settings->bytes to %"PRIu64"
Co-authored-by: root <[email protected]>
Co-authored-by: DJ Breuer (Github TheRealDJ) <unknown>
show more ...
|
| d2a22529 | 28-Feb-2022 |
swlars <[email protected]> |
Add note for stream ids for multi-stream tests (#1285) |
| 7bdd5b0e | 20-Feb-2022 |
David Bar-On <[email protected]> |
Fix for issue 1215 - add TCP option |
| a214ba23 | 14-Feb-2022 |
Arsenović Arsen <[email protected]> |
Fix --bind missing a .TP in iperf3.1 (#1277) |
| 76bd67f6 | 28-Jan-2022 |
Sarah Larsen <[email protected]> |
iperf-3.11 release engineering tasks.
Bump version number, update release notes, rename release notes and tweak markup. Update copyright year. |
| 15ec8e6e | 15-Jan-2022 |
David Bar-On <[email protected]> |
Check also for legacy connect reply from the server |
| 2eace5a9 | 08-Jan-2022 |
David Bar-On <[email protected]> |
Fix 1123/1212 - ignore out of order packts during UDP connection in Reverse mode |
| e4428187 | 08-Jan-2022 |
David Bar-On <[email protected]> |
Fix 1249 - use different ports for each direction when cport and bdir options are set |
| d5c85065 | 16-Dec-2021 |
Bruce A. Mah <[email protected]> |
Force iperf3 server to exit if it can't open its log file.
Fixes #1225. |
| d424be34 | 15-Nov-2021 |
Preston Hunt <[email protected]> |
Fix --dscp (#1162)
TOS = DSCP * 4; so shift DSCP << 2 |
| 805a4ce1 | 11-Nov-2021 |
Bruce A. Mah <[email protected]> |
Consistify string lengths for arguments to warning(). |