Skip to content

Commit d9e4585

Browse files
authored
Merge pull request #1877 from esnet/bmah-pr-1717-fix-ups
Minor fix-ups from #1717
2 parents 9a4a108 + 71cfa71 commit d9e4585

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

src/iperf3.1

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH IPERF3 1 "May 2024" ESnet "User Manuals"
1+
.TH IPERF3 1 "May 2025" ESnet "User Manuals"
22
.SH NAME
33
iperf3 \- perform network throughput tests
44
.SH SYNOPSIS
@@ -410,6 +410,10 @@ Set number of SCTP streams.
410410
Use a "zero copy" method of sending data, such as sendfile(2),
411411
instead of the usual write(2).
412412
.TP
413+
.BR --skip-rx-copy
414+
Ignored received packet data, using the MSG_TRUNC flag to the
415+
recv(2) system call.
416+
.TP
413417
.BR -O ", " --omit " \fIn\fR"
414418
Perform pre-test for N seconds and omit the pre-test statistics, to skip past the TCP slow-start
415419
period.

src/iperf_api.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* iperf, Copyright (c) 2014-2023, The Regents of the University of
2+
* iperf, Copyright (c) 2014-2025, The Regents of the University of
33
* California, through Lawrence Berkeley National Laboratory (subject
44
* to receipt of any required approvals from the U.S. Dept. of
55
* Energy). All rights reserved.
@@ -101,8 +101,8 @@ typedef atomic_uint_fast64_t atomic_iperf_size_t;
101101
#define OPT_JSON_STREAM 28
102102
#define OPT_SND_TIMEOUT 29
103103
#define OPT_USE_PKCS1_PADDING 30
104-
#define OPT_SKIP_RX_COPY 32
105104
#define OPT_CNTL_KA 31
105+
#define OPT_SKIP_RX_COPY 32
106106

107107
/* states */
108108
#define TEST_START 1

0 commit comments

Comments
 (0)