86efd03faa
iperf-3.12 2022-09-30 --------------------- * Notable user-visible changes * cJSON has been updated to version 1.7.15 * The --bind <host>%<dev> option syntax now works properly * A server-side file descriptor leak with the --logfile option has been fixed * A bug that caused some large values from TCP_INFO to be misprinted as negative numbers has been fixed * Using the -k or -n flags with --reverse no longer leak into future tests * There are now various debug level options available with the --debug option. These can be used to adjust the amount of debugging output * A new --snd-timeout option has been added to set a termination timeout for idle TCP connections * iperf3 is slightly more robust to out-of-order packets during UDP connection setup in --reverse mode * iperf3 will now use different ports for each direction when the --cport and --bdir options are set * The iperf3 server will now exit if it can't open its log file * Various help message and output fixes have been made * Various compiler warnings have been fixed * Developer-visible changes * Operation of bootstrap.sh has been fixed and simplified * Flow label support / compatibility under Linux has been improved * Various minor memory leaks have been fixed * A getter/setter has been added for the bind_port parameter (--cport option). * Various internal documentation improvements
22 lines
585 B
Makefile
22 lines
585 B
Makefile
# $NetBSD: Makefile,v 1.14 2022/10/14 11:00:14 adam Exp $
|
|
|
|
DISTNAME= iperf-3.12
|
|
PKGNAME= ${DISTNAME:S/iperf/iperf3/}
|
|
CATEGORIES= net benchmarks
|
|
MASTER_SITES= https://downloads.es.net/pub/iperf/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://software.es.net/iperf/
|
|
COMMENT= TCP and UDP bandwidth performance measurement tool
|
|
LICENSE= modified-bsd
|
|
|
|
USE_LANGUAGES= c99
|
|
USE_LIBTOOL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS.NetBSD+= --without-sctp
|
|
TEST_TARGET= check
|
|
|
|
LDFLAGS.SunOS+= -lsocket -lnsl
|
|
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|