1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
Description: fix warning cannot select font 'C'
Replace with Bold the 'C' font that is not recognized as a valid
font name in the groff system
Author: Roberto Lumbreras <rover@debian.org>
Forwarded: no
Index: iperf3-3.19.1/src/iperf3.1
===================================================================
--- iperf3-3.19.1.orig/src/iperf3.1 2025-07-25 21:50:36.000000000 +0200
+++ iperf3-3.19.1/src/iperf3.1 2025-11-09 09:48:27.234989578 +0100
@@ -22,9 +22,9 @@
An iperf3 server can be started using either of the -s or
--server command-line parameters, for example:
.IP
-\fCiperf3 -s\fR
+\fBiperf3 -s\fR
.IP
-\fCiperf3 --server \fR
+\fBiperf3 --server \fR
.PP
Note that many iperf3 parameters have both short (-s) and long
(--server) forms.
@@ -36,7 +36,7 @@
A custom port can be specified by using the -p flag, for
example:
.IP
-\fCiperf3 -s -p 5002\fR
+\fBiperf3 -s -p 5002\fR
.PP
After the server is started, it will listen for connections from
iperf3 clients (in other words, the iperf3 program run in client
@@ -45,16 +45,16 @@
which also requires a host to which iperf3 should connect.
The host can by specified by hostname, IPv4 literal, or IPv6 literal:
.IP
-\fCiperf3 -c iperf3.example.com\fR
+\fBiperf3 -c iperf3.example.com\fR
.IP
-\fCiperf3 -c 192.0.2.1\fR
+\fBiperf3 -c 192.0.2.1\fR
.IP
-\fCiperf3 -c 2001:db8::1\fR
+\fBiperf3 -c 2001:db8::1\fR
.PP
If the iperf3 server is running on a non-default TCP port, that port
number needs to be specified on the client as well:
.IP
-\fCiperf3 -c iperf3.example.com -p 5002\fR
+\fBiperf3 -c iperf3.example.com -p 5002\fR
.PP
The initial TCP connection is used to exchange test parameters,
control the start and end of the test, and to exchange test results.
@@ -69,7 +69,7 @@
the -R flag on the client.
This causes data to be sent from the server to the client.
.IP
-\fCiperf3 -c iperf3.example.com -p 5202 -R
+\fBiperf3 -c iperf3.example.com -p 5202 -R\fR
.PP
Results are displayed on both the client and server.
There will be at least one line of output per measurement interval (by
@@ -87,7 +87,7 @@
least as much as possible) a summary of the test as seen by both the
sender and the receiver, with lines tagged accordingly.
Recall that by default the client is the sender and the server is the
-receiver, although as indicated above, use of the \fC-R\fR flag will
+receiver, although as indicated above, use of the \fB-R\fR flag will
reverse these roles.
.PP
The client can be made to retrieve the server-side output for a given
@@ -173,11 +173,11 @@
prepend a timestamp at the start of each output line.
By default, timestamps have the format emitted by
.BR ctime ( 1 ).
-Optionally, \fC=\fR followed by
+Optionally, \fB=\fR followed by
a format specification can be passed to customize the
timestamps, see
.BR strftime ( 3 ).
-If this optional format is given, the \fC=\fR must immediately
+If this optional format is given, the \fB=\fR must immediately
follow the \fB--timestamps\fR option with no whitespace intervening.
.TP
.BR --rcv-timeout " \fI#\fR"
@@ -315,7 +315,7 @@
iperf3's internal throughput pacing (\-b/\--bitrate flag), and both can be
specified for the same test.
Only available on platforms supporting the
-\fCSO_MAX_PACING_RATE\fR socket option (currently only Linux).
+\fBSO_MAX_PACING_RATE\fR socket option (currently only Linux).
The default is no fair-queueing based pacing.
.TP
.BR --no-fq-socket-pacing
@@ -496,7 +496,7 @@
The file is a simple list of comma-separated pairs of a username and a
corresponding password hash.
The password hash is a SHA256 hash of the string "{$user}$password".
-The file can also contain commented lines (starting with the \fC#\fR
+The file can also contain commented lines (starting with the \fB#\fR
character).
An example of commands to generate the password hash on a UNIX/Linux system
is given below:
@@ -522,7 +522,7 @@
.SH AUTHORS
A list of the contributors to iperf3 can be found within the
documentation located at
-\fChttps://software.es.net/iperf/dev.html#authors\fR.
+\fBhttps://software.es.net/iperf/dev.html#authors\fR.
.SH "SEE ALSO"
libiperf(3),
Index: iperf3-3.19.1/src/libiperf.3
===================================================================
--- iperf3-3.19.1.orig/src/libiperf.3 2025-07-25 21:50:36.000000000 +0200
+++ iperf3-3.19.1/src/libiperf.3 2025-11-09 09:51:50.902081610 +0100
@@ -108,7 +108,7 @@
.SH AUTHORS
A list of the contributors to iperf3 can be found within the
documentation located at
-\fChttps://software.es.net/iperf/dev.html#authors\fR.
+\fBhttps://software.es.net/iperf/dev.html#authors\fR.
.SH "SEE ALSO"
iperf3(1),
|