Home
last modified time | relevance | path

Searched refs:server (Results 1 – 8 of 8) sorted by relevance

/iperf/docs/
H A Dinvoking.rst39 iperf3 -c server [ options ]
45 user must establish both a server and a client.
48 An iperf3 server can be started using either of the -s or --server com-
53 iperf3 --server
114 test by specifying the --get-server-output flag.
209 -s, --server
210 run in server mode
225 --server-bitrate-limit n[KMGT]
270 server.
413 --get-server-output
[all …]
H A Dnews.rst41 each output line. A new ``--server-bitrate-limit`` flag has been
42 added as a server command-line argument, and allows an iperf3 server
273 sizes could put the iperf3 server in a state where it would stop
343 * It is now possible to get (most of) the server-side output at
344 the client by using the ``--get-server-output`` flag.
357 iperf3 downloads are now hosted on a new server at ESnet:
H A Ddev.rst66 S(settings) V(server) reports
102 * The results printed on the server side at the end of a test do not
105 and server. (Issue #293)
107 * The server could have a very short measurement reporting interval at
110 client and server. (Issue #278)
H A Dfaq.rst149 but since the packets don’t get to the server, no ack is received
153 server after a while. However, it seems that segmentation is not
169 server, try the iperf3 reverse mode (``-R``). If TSO/LSO is only
214 Why can’t I run a UDP client with no server?
225 iperf3 uses a control connection between the client and server to
/iperf/
H A DRELNOTES.md77 * The server is now less likely to get stuck due to network errors
116 * A --server-bitrate-limit flag has been added as a server-side
160 * Clock skew between the iperf3 client and server will no longer
279 end-of-test statistics to the server (#677). This fixes a
285 * A server side crash in verbose output with a client running
339 iperf3 server (#517).
383 server, in milliseconds (#216).
628 iperf3 server in daemon mode (issue #119).
865 -D, --daemon run server as a daemon
931 * Dynamic server (gets test parameters from client)
[all …]
H A DREADME.md125 S(settings) V(server) reports
/iperf/src/
H A Dnet.h31 …to, const char *local, const char *bind_dev, int local_port, const char *server, int port, struct …
32 …to, const char *local, const char *bind_dev, int local_port, const char *server, int port, int tim…
H A Dnet.c124 …to, const char *local, const char *bind_dev, int local_port, const char *server, int port, struct … in create_socket() argument
142 if ((gerror = getaddrinfo(server, portstr, &hints, &server_res)) != 0) { in create_socket()
233 …to, const char *local, const char *bind_dev, int local_port, const char *server, int port, int tim… in netdial() argument
238 s = create_socket(domain, proto, local, bind_dev, local_port, server, port, &server_res); in netdial()