| #
9eef1603 |
| 11-Mar-2022 |
David Bar-On <[email protected]> |
add the modified configure.ac
|
|
Revision tags: 3.11 |
|
| #
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.
|
| #
d83ffa33 |
| 09-Jul-2021 |
Bruce A. Mah <[email protected]> |
Version number bump for post-3.10.1.
|
|
Revision tags: 3.10.1 |
|
| #
7f02c6f0 |
| 02-Jun-2021 |
Bruce A. Mah <[email protected]> |
Releng 3.10.1 (#1156)
Version number bumps and release notes for iperf-3.10.1.
|
| #
8a8c7edc |
| 02-Jun-2021 |
Bruce A. Mah <[email protected]> |
fix: Updates for autoconf-2.71 (fix #1154) (#1155)
* Reimplement a number of socket option tests for autoconf-2.71.
* Reimplement configure test for IP DF.
* Use AC_PREREQ. Configuration scrip
fix: Updates for autoconf-2.71 (fix #1154) (#1155)
* Reimplement a number of socket option tests for autoconf-2.71.
* Reimplement configure test for IP DF.
* Use AC_PREREQ. Configuration scripts must be rebuilt with autoconf-2.71 or newer.
* Removed obsolete/unneeded tests and in general improve compatibility with autoconf-2.71.
show more ...
|
|
Revision tags: 3.10 |
|
| #
d8d82745 |
| 26-May-2021 |
Bruce A. Mah <[email protected]> |
Release engineering changes for iperf-3.10 (#1151)
* Draft release notes for iperf-3.10.
* iperf-3.10 version number bumps.
* Update using autoupdate-2.71 from Xcode 12 on macOS Big Sur.
*
Release engineering changes for iperf-3.10 (#1151)
* Draft release notes for iperf-3.10.
* iperf-3.10 version number bumps.
* Update using autoupdate-2.71 from Xcode 12 on macOS Big Sur.
* Regen.
* docs: Add release notes for recent changes.
show more ...
|
| #
318fbf2e |
| 21-May-2021 |
Bruce A. Mah <[email protected]> |
chore: autoupdate
|
| #
47985d7f |
| 19-May-2021 |
Shuo Chen <[email protected]> |
Add tcp_info.snd_wnd to JSON output.
tcp_info.snd_wnd is available on FreeBSD and NetBSD since TCP_INFO was added. It was added to Linux 5.4 in late 2019 and becomes available in Ubuntu 20.04 and D
Add tcp_info.snd_wnd to JSON output.
tcp_info.snd_wnd is available on FreeBSD and NetBSD since TCP_INFO was added. It was added to Linux 5.4 in late 2019 and becomes available in Ubuntu 20.04 and Debian 11.
Tested on: * Debian 11 running on x86-64 with this field. * Debian 10 armv7 running on Raspberry Pi 2 without this field. * NetBSD 9.2 armv7 running on Raspberry Pi 3 with this field. * FreeBSD 13 aarch64 running on Raspberry Pi 4 with this field.
show more ...
|
| #
49a5771a |
| 16-Feb-2021 |
David Bar-On <[email protected]> |
IP don't fragment support (#1119)
Adds an --dont-fragment flag that sets the DF flag in the header for UDP/IPv4 tests.
Co-authored-by: root <[email protected]>
Co-authored-by: Bru
IP don't fragment support (#1119)
Adds an --dont-fragment flag that sets the DF flag in the header for UDP/IPv4 tests.
Co-authored-by: root <[email protected]>
Co-authored-by: Bruce A. Mah <[email protected]>
show more ...
|
| #
21581a72 |
| 22-Dec-2020 |
Bruce A. Mah <[email protected]> |
enh: Support SO_BINDTODEVICE (#1097)
This lets iperf work better with multi-homed machines and
VRF.
Fixes #1089.
Based on a patch by Ben Greear <[email protected]> via PR #817.
Co-au
enh: Support SO_BINDTODEVICE (#1097)
This lets iperf work better with multi-homed machines and
VRF.
Fixes #1089.
Based on a patch by Ben Greear <[email protected]> via PR #817.
Co-authored-by: Ben Greear <[email protected]>
show more ...
|
| #
c5a59928 |
| 24-Aug-2020 |
Bruce A. Mah <[email protected]> |
chore: Post 3.9 version bump.
|
|
Revision tags: 3.9 |
|
| #
1f8fb132 |
| 14-Aug-2020 |
Bruce A. Mah <[email protected]> |
chore: releng 3.9 (#1041)
Version number bump for 3.9, release notes.
|
| #
215acfe7 |
| 22-Jun-2020 |
Alexandru-Sever Horin <[email protected]> |
fix: Fix enable/disable-profiling flag (#1018)
The variable enable_profiling exists just because AC_ARG_ENABLE([profiling] is defined.
If it is redefined in the exist condition, the both enable and
fix: Fix enable/disable-profiling flag (#1018)
The variable enable_profiling exists just because AC_ARG_ENABLE([profiling] is defined.
If it is redefined in the exist condition, the both enable and disable flags will enable the profiling,
just if the flag is missing it will be disabled.
Reference in Warning here: https://autotools.io/autoconf/arguments.html
show more ...
|
| #
0b0aa349 |
| 12-Jun-2020 |
Stefano Garzarella <[email protected]> |
Fix warning: "HAVE_SCTP" redefined (#1010)
The netinet/sctp.h header file defines HAVE_SCTP, so we have this
warning while building:
In file included from ../../src/iperf.h:30,
Fix warning: "HAVE_SCTP" redefined (#1010)
The netinet/sctp.h header file defines HAVE_SCTP, so we have this
warning while building:
In file included from ../../src/iperf.h:30,
from ../../src/iperf_sctp.c:46:
./iperf_config.h:44: warning: "HAVE_SCTP" redefined
44 | #define HAVE_SCTP 1
|
In file included from ../../src/iperf_sctp.c:43:
/usr/include/netinet/sctp.h:56: note: this is the location of the previous definition
56 | #define HAVE_SCTP
|
This patch replaces our HAVE_SCTP definition with HAVE_SCTP_H to avoid
this warning.
Signed-off-by: Stefano Garzarella <[email protected]>
show more ...
|
|
Revision tags: 3.8.1 |
|
| #
3dfdffd9 |
| 10-Jun-2020 |
Bruce A. Mah <[email protected]> |
Release notes and version number bump for iperf 3.8.1 (#1015)
|
|
Revision tags: 3.8 |
|
| #
f95924dd |
| 08-Jun-2020 |
Bruce A. Mah <[email protected]> |
chore: iperf-3.8 release engineering changes (#1012)
Updates version numbers, release notes, etc.
|
| #
f72054eb |
| 28-May-2020 |
Bruce A. Mah <[email protected]> |
Allow disabling auto-detect of SCTP (#1008)
* feat: Add a mechanism to disable checks for SCTP (--without-sctp).
The use case for this is building a static iperf3 binary on CentOS 7,
on a system
Allow disabling auto-detect of SCTP (#1008)
* feat: Add a mechanism to disable checks for SCTP (--without-sctp).
The use case for this is building a static iperf3 binary on CentOS 7,
on a system with SCTP installed (but it has no static SCTP libraries).
In that case we need to disable SCTP detection to prevent a linking
error at runtime.
While here, s/iperf /iperf3 / in a couple of help strings.
show more ...
|
| #
9427ecdf |
| 04-May-2020 |
Ezra <[email protected]> |
Add configure option to enable static linking of iperf binary. (#989)
|
| #
cf1cad40 |
| 21-Apr-2020 |
ralcini <[email protected]> |
fix: Resolved name clashes between windows.h and openssl (cygwin under Win10) (#984)
Fixes #983.
|
| #
4a3efb37 |
| 06-Jan-2020 |
Bruce A. Mah <[email protected]> |
build: Unbreak builds on macOS by not building profiled binaries by default (#950)
Fixes #933.
|
| #
504ed7a2 |
| 19-Aug-2019 |
Bruce A. Mah <[email protected]> |
chore: Post-release version number bump.
|
|
Revision tags: 3.7 |
|
| #
dfcea9f6 |
| 21-Jun-2019 |
Bruce A. Mah <[email protected]> |
chore: iperf-3.7 release engineering tasks.
Bump version number, update release notes, rename release notes and tweak markup.
|
| #
f7817145 |
| 17-May-2019 |
hhb <[email protected]> |
fix: Fix configure when openssl is absent. (#854)
openssl flags was appended to normal cpp/ld flags even if it is
absent. This change fixes configure.ac and regenerates configure.
|
| #
f64da9b9 |
| 02-Jul-2018 |
Hk <[email protected]> |
Move the automake "foreign" directive from bootstrap.sh to configure.ac (#765)
Fixes #764.
|
| #
e6689a8c |
| 29-Jun-2018 |
Hk <[email protected]> |
Provide a configure feature flag (--disable-profiling) to disable creation of iperf3_profile binary (#763)
Fixes #749.
|