2009-10-23 22:30:17 +00:00
|
|
|
/*---------------------------------------------------------------
|
2014-01-15 12:01:22 -08:00
|
|
|
* Copyright (c) 1999,2000,2001,2002,2003
|
2009-10-23 22:30:17 +00:00
|
|
|
* The Board of Trustees of the University of Illinois
|
|
|
|
* All Rights Reserved.
|
|
|
|
*---------------------------------------------------------------
|
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
* obtaining a copy of this software (Iperf) and associated
|
|
|
|
* documentation files (the "Software"), to deal in the Software
|
|
|
|
* without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute,
|
|
|
|
* sublicense, and/or sell copies of the Software, and to permit
|
|
|
|
* persons to whom the Software is furnished to do
|
|
|
|
* so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Redistributions of source code must retain the above
|
|
|
|
* copyright notice, this list of conditions and
|
|
|
|
* the following disclaimers.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Redistributions in binary form must reproduce the above
|
|
|
|
* copyright notice, this list of conditions and the following
|
|
|
|
* disclaimers in the documentation and/or other materials
|
|
|
|
* provided with the distribution.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Neither the names of the University of Illinois, NCSA,
|
|
|
|
* nor the names of its contributors may be used to endorse
|
|
|
|
* or promote products derived from this Software without
|
|
|
|
* specific prior written permission.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
|
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE CONTIBUTORS OR COPYRIGHT
|
|
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE
|
|
|
|
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
* ________________________________________________________________
|
|
|
|
* National Laboratory for Applied Network Research
|
|
|
|
* National Center for Supercomputing Applications
|
|
|
|
* University of Illinois at Urbana-Champaign
|
|
|
|
* http://www.ncsa.uiuc.edu
|
|
|
|
* ________________________________________________________________
|
|
|
|
*
|
|
|
|
* Locale.c
|
|
|
|
* by Ajay Tirumala <tirumala@ncsa.uiuc.edu>
|
|
|
|
* & Mark Gates <mgates@nlanr.net>
|
|
|
|
* -------------------------------------------------------------------
|
|
|
|
* Strings and other stuff that is locale specific.
|
|
|
|
* ------------------------------------------------------------------- */
|
2014-04-14 13:33:33 -07:00
|
|
|
#include "iperf_config.h"
|
2009-10-23 22:30:17 +00:00
|
|
|
|
2009-11-10 17:05:44 +00:00
|
|
|
#include "version.h"
|
2009-10-23 22:30:17 +00:00
|
|
|
|
2013-02-15 09:10:56 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2009-10-23 22:30:17 +00:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------
|
|
|
|
* usage
|
|
|
|
* ------------------------------------------------------------------- */
|
|
|
|
|
2013-01-28 18:14:34 -08:00
|
|
|
const char usage_shortstr[] = "Usage: iperf [-s|-c host] [options]\n"
|
2010-06-25 00:31:15 +00:00
|
|
|
"Try `iperf --help' for more information.\n";
|
2009-10-23 22:30:17 +00:00
|
|
|
|
2013-01-28 18:14:34 -08:00
|
|
|
const char usage_longstr[] = "Usage: iperf [-s|-c host] [options]\n"
|
2010-06-25 00:31:15 +00:00
|
|
|
" iperf [-h|--help] [-v|--version]\n\n"
|
2013-01-28 18:14:34 -08:00
|
|
|
"Server or Client:\n"
|
|
|
|
" -p, --port # server port to listen on/connect to\n"
|
2010-06-25 00:31:15 +00:00
|
|
|
" -f, --format [kmgKMG] format to report: Kbits, Mbits, KBytes, MBytes\n"
|
|
|
|
" -i, --interval # seconds between periodic bandwidth reports\n"
|
2013-10-25 17:00:52 -07:00
|
|
|
" -F, --file name xmit/recv the specified file\n"
|
2014-04-14 10:45:46 -07:00
|
|
|
#if defined(HAVE_CPU_AFFINITY)
|
2013-10-25 17:00:52 -07:00
|
|
|
" -A, --affinity n/n,m set CPU affinity\n"
|
2014-04-14 10:45:46 -07:00
|
|
|
#endif /* HAVE_CPU_AFFINITY */
|
2013-02-01 11:42:35 -08:00
|
|
|
" -V, --verbose more detailed output\n"
|
|
|
|
" -J, --json output in JSON format\n"
|
2014-03-14 14:23:38 -07:00
|
|
|
" --logfile f send output to a log file\n"
|
2014-01-15 12:01:22 -08:00
|
|
|
" -d, --debug emit debugging output\n"
|
2013-02-01 11:42:35 -08:00
|
|
|
" -v, --version show version information and quit\n"
|
|
|
|
" -h, --help show this message and quit\n"
|
2010-06-25 00:31:15 +00:00
|
|
|
"Server specific:\n"
|
|
|
|
" -s, --server run in server mode\n"
|
2013-11-26 15:40:19 -08:00
|
|
|
" -D, --daemon run the server as a daemon\n"
|
2014-01-24 16:42:10 -08:00
|
|
|
" -I, --pidfile file write PID file\n"
|
2013-01-28 18:14:34 -08:00
|
|
|
"Client specific:\n"
|
|
|
|
" -c, --client <host> run in client mode, connecting to <host>\n"
|
2014-04-09 10:29:16 -07:00
|
|
|
#if defined(HAVE_SCTP)
|
2014-02-14 11:52:16 -08:00
|
|
|
" --sctp use SCTP rather than TCP\n"
|
2014-04-09 10:29:16 -07:00
|
|
|
#endif /* HAVE_SCTP */
|
2013-01-28 18:14:34 -08:00
|
|
|
" -u, --udp use UDP rather than TCP\n"
|
2013-12-18 20:56:21 -08:00
|
|
|
" -b, --bandwidth #[KMG][/#] target bandwidth in bits/sec\n"
|
2013-06-24 07:14:14 -07:00
|
|
|
" (default %d Mbit/sec for UDP, unlimited for TCP)\n"
|
2013-12-18 20:56:21 -08:00
|
|
|
" (optional slash and packet count for burst mode)\n"
|
2013-02-27 14:22:44 -08:00
|
|
|
" -t, --time # time in seconds to transmit for (default %d secs)\n"
|
2013-01-28 18:14:34 -08:00
|
|
|
" -n, --num #[KMG] number of bytes to transmit (instead of -t)\n"
|
2013-12-19 10:31:22 -08:00
|
|
|
" -k, --blockcount #[KMG] number of blocks (packets) to transmit (instead of -t or -n)\n"
|
2013-02-27 14:22:44 -08:00
|
|
|
" -l, --len #[KMG] length of buffer to read or write\n"
|
|
|
|
" (default %d KB for TCP, %d KB for UDP)\n"
|
|
|
|
" -P, --parallel # number of parallel client streams to run\n"
|
2013-01-28 18:14:34 -08:00
|
|
|
" -R, --reverse run in reverse mode (server sends, client receives)\n"
|
|
|
|
" -w, --window #[KMG] TCP window size (socket buffer size)\n"
|
2014-02-14 14:58:01 -08:00
|
|
|
" -B, --bind <host> bind to a specific interface\n"
|
2014-04-10 10:53:18 -07:00
|
|
|
#if defined(HAVE_TCP_CONGESTION)
|
2014-04-14 13:43:02 -07:00
|
|
|
" -C, --congestion <algo> set TCP congestion control algorithm (Linux and FreeBSD only)\n"
|
2014-04-10 10:53:18 -07:00
|
|
|
#endif /* HAVE_TCP_CONGESTION */
|
2013-01-28 18:14:34 -08:00
|
|
|
" -M, --set-mss # set TCP maximum segment size (MTU - 40 bytes)\n"
|
|
|
|
" -N, --nodelay set TCP no delay, disabling Nagle's Algorithm\n"
|
2013-03-29 17:49:27 -07:00
|
|
|
" -4, --version4 only use IPv4\n"
|
|
|
|
" -6, --version6 only use IPv6\n"
|
2013-01-28 18:14:34 -08:00
|
|
|
" -S, --tos N set the IP 'type of service'\n"
|
2014-04-10 11:20:36 -07:00
|
|
|
#if defined(HAVE_FLOWLABEL)
|
2013-12-12 09:21:36 -08:00
|
|
|
" -L, --flowlabel N set the IPv6 flow label (only supported on Linux)\n"
|
2014-04-10 11:20:36 -07:00
|
|
|
#endif /* HAVE_FLOWLABEL */
|
2013-03-04 15:55:16 -08:00
|
|
|
" -Z, --zerocopy use a 'zero copy' method of sending data\n"
|
2013-07-05 13:52:19 -07:00
|
|
|
" -O, --omit N omit the first n seconds\n"
|
2013-11-08 20:31:19 -08:00
|
|
|
" -T, --title str prefix every output line with this string\n"
|
2009-10-23 22:30:17 +00:00
|
|
|
|
2009-11-10 17:05:44 +00:00
|
|
|
#ifdef NOT_YET_SUPPORTED /* still working on these */
|
2009-10-23 22:30:17 +00:00
|
|
|
#endif
|
2010-06-25 00:31:15 +00:00
|
|
|
|
2013-01-28 18:14:34 -08:00
|
|
|
"\n"
|
|
|
|
"[KMG] indicates options that support a K/M/G suffix for kilo-, mega-, or giga-\n"
|
2014-04-09 13:29:03 -07:00
|
|
|
"Report bugs to " PACKAGE_BUGREPORT "\n";
|
2009-10-23 22:30:17 +00:00
|
|
|
|
2013-01-28 18:14:34 -08:00
|
|
|
|
2009-10-23 22:30:17 +00:00
|
|
|
#ifdef OBSOLETE /* from old iperf: no longer supported. Add some of these back someday */
|
2013-02-15 09:10:56 -08:00
|
|
|
"-d, --dualtest Do a bidirectional test simultaneously\n"
|
|
|
|
"-L, --listenport # port to recieve bidirectional tests back on\n"
|
|
|
|
"-I, --stdin input the data to be transmitted from stdin\n"
|
|
|
|
"-F, --fileinput <name> input the data to be transmitted from a file\n"
|
|
|
|
"-r, --tradeoff Do a bidirectional test individually\n"
|
|
|
|
"-T, --ttl # time-to-live, for multicast (default 1)\n"
|
|
|
|
"-x, --reportexclude [CDMSV] exclude C(connection) D(data) M(multicast) S(settings) V(server) reports\n"
|
|
|
|
"-y, --reportstyle C report as a Comma-Separated Values\n"
|
2009-10-23 22:30:17 +00:00
|
|
|
#endif
|
|
|
|
|
2014-04-24 10:23:31 -07:00
|
|
|
const char version[] = PACKAGE_STRING;
|
2009-10-23 22:30:17 +00:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------
|
|
|
|
* settings
|
|
|
|
* ------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
const char seperator_line[] =
|
|
|
|
"------------------------------------------------------------\n";
|
|
|
|
|
|
|
|
const char server_port[] =
|
|
|
|
"Server listening on %s port %d\n";
|
|
|
|
|
|
|
|
const char client_port[] =
|
|
|
|
"Client connecting to %s, %s port %d\n";
|
|
|
|
|
|
|
|
const char bind_address[] =
|
|
|
|
"Binding to local address %s\n";
|
|
|
|
|
|
|
|
const char multicast_ttl[] =
|
|
|
|
"Setting multicast TTL to %d\n";
|
|
|
|
|
|
|
|
const char join_multicast[] =
|
|
|
|
"Joining multicast group %s\n";
|
|
|
|
|
|
|
|
const char client_datagram_size[] =
|
|
|
|
"Sending %d byte datagrams\n";
|
|
|
|
|
|
|
|
const char server_datagram_size[] =
|
|
|
|
"Receiving %d byte datagrams\n";
|
|
|
|
|
|
|
|
const char tcp_window_size[] =
|
|
|
|
"TCP window size";
|
|
|
|
|
|
|
|
const char udp_buffer_size[] =
|
|
|
|
"UDP buffer size";
|
|
|
|
|
|
|
|
const char window_default[] =
|
|
|
|
"(default)";
|
|
|
|
|
|
|
|
const char wait_server_threads[] =
|
|
|
|
"Waiting for server threads to complete. Interrupt again to force quit.\n";
|
|
|
|
|
2010-07-07 21:54:24 +00:00
|
|
|
const char test_start_time[] =
|
2013-07-05 13:52:19 -07:00
|
|
|
"Starting Test: protocol: %s, %d streams, %d byte blocks, omitting %d seconds, %d second test\n";
|
2010-07-07 21:54:24 +00:00
|
|
|
|
|
|
|
const char test_start_bytes[] =
|
2013-07-05 13:52:19 -07:00
|
|
|
"Starting Test: protocol: %s, %d streams, %d byte blocks, omitting %d seconds, %llu bytes to send\n";
|
2010-07-07 21:54:24 +00:00
|
|
|
|
2013-12-19 10:31:22 -08:00
|
|
|
const char test_start_blocks[] =
|
|
|
|
"Starting Test: protocol: %s, %d streams, %d byte blocks, omitting %d seconds, %d blocks to send\n";
|
|
|
|
|
2010-07-07 21:54:24 +00:00
|
|
|
|
2009-10-23 22:30:17 +00:00
|
|
|
/* -------------------------------------------------------------------
|
|
|
|
* reports
|
|
|
|
* ------------------------------------------------------------------- */
|
|
|
|
|
2013-11-11 11:18:46 -08:00
|
|
|
const char report_time[] =
|
|
|
|
"Time: %s\n";
|
|
|
|
|
|
|
|
const char report_connecting[] =
|
|
|
|
"Connecting to host %s, port %d\n";
|
|
|
|
|
|
|
|
const char report_reverse[] =
|
|
|
|
"Reverse mode, remote host %s is sending\n";
|
|
|
|
|
|
|
|
const char report_accepted[] =
|
|
|
|
"Accepted connection from %s, port %d\n";
|
|
|
|
|
|
|
|
const char report_cookie[] =
|
|
|
|
" Cookie: %s\n";
|
|
|
|
|
|
|
|
const char report_connected[] =
|
|
|
|
"[%3d] local %s port %d connected to %s port %d\n";
|
|
|
|
|
|
|
|
const char report_window[] =
|
|
|
|
"TCP window size: %s\n";
|
|
|
|
|
|
|
|
const char report_autotune[] =
|
|
|
|
"Using TCP Autotuning\n";
|
|
|
|
|
|
|
|
const char report_omit_done[] =
|
|
|
|
"Finished omit period, starting real test\n";
|
|
|
|
|
|
|
|
const char report_diskfile[] =
|
|
|
|
" Sent %s / %s (%d%%) of %s\n";
|
|
|
|
|
|
|
|
const char report_done[] =
|
|
|
|
"iperf Done.\n";
|
|
|
|
|
2009-10-23 22:30:17 +00:00
|
|
|
const char report_read_lengths[] =
|
|
|
|
"[%3d] Read lengths occurring in more than 5%% of reads:\n";
|
|
|
|
|
|
|
|
const char report_read_length_times[] =
|
|
|
|
"[%3d] %5d bytes read %5d times (%.3g%%)\n";
|
|
|
|
|
|
|
|
const char report_bw_header[] =
|
2012-12-03 16:20:49 -08:00
|
|
|
"[ ID] Interval Transfer Bandwidth\n";
|
2009-10-23 22:30:17 +00:00
|
|
|
|
2012-11-09 16:02:42 -08:00
|
|
|
const char report_bw_retrans_header[] =
|
2013-12-19 14:44:15 -08:00
|
|
|
"[ ID] Interval Transfer Bandwidth Retr\n";
|
2012-11-09 16:02:42 -08:00
|
|
|
|
2014-02-14 11:17:43 -08:00
|
|
|
const char report_bw_retrans_cwnd_header[] =
|
|
|
|
"[ ID] Interval Transfer Bandwidth Retr Cwnd\n";
|
|
|
|
|
2012-11-09 16:02:42 -08:00
|
|
|
const char report_bw_udp_header[] =
|
2013-12-04 09:16:37 -08:00
|
|
|
"[ ID] Interval Transfer Bandwidth Jitter Lost/Total Datagrams\n";
|
|
|
|
|
|
|
|
const char report_bw_udp_sender_header[] =
|
|
|
|
"[ ID] Interval Transfer Bandwidth Total Datagrams\n";
|
2012-10-29 22:30:31 -07:00
|
|
|
|
2009-10-23 22:30:17 +00:00
|
|
|
const char report_bw_format[] =
|
2014-02-14 11:17:43 -08:00
|
|
|
"[%3d] %6.2f-%-6.2f sec %ss %ss/sec %s\n";
|
2009-10-23 22:30:17 +00:00
|
|
|
|
2012-11-09 16:02:42 -08:00
|
|
|
const char report_bw_retrans_format[] =
|
2014-02-14 11:17:43 -08:00
|
|
|
"[%3d] %6.2f-%-6.2f sec %ss %ss/sec %3u %s\n";
|
|
|
|
|
|
|
|
const char report_bw_retrans_cwnd_format[] =
|
|
|
|
"[%3d] %6.2f-%-6.2f sec %ss %ss/sec %3u %ss %s\n";
|
2012-11-09 16:02:42 -08:00
|
|
|
|
|
|
|
const char report_bw_udp_format[] =
|
2013-12-04 09:16:37 -08:00
|
|
|
"[%3d] %6.2f-%-6.2f sec %ss %ss/sec %5.3f ms %d/%d (%.2g%%) %s\n";
|
|
|
|
|
|
|
|
const char report_bw_udp_sender_format[] =
|
|
|
|
"[%3d] %6.2f-%-6.2f sec %ss %ss/sec %d %s\n";
|
2012-11-09 16:02:42 -08:00
|
|
|
|
2013-11-11 11:18:46 -08:00
|
|
|
const char report_summary[] =
|
|
|
|
"Test Complete. Summary Results:\n";
|
|
|
|
|
2009-10-23 22:30:17 +00:00
|
|
|
const char report_sum_bw_format[] =
|
2014-02-14 11:17:43 -08:00
|
|
|
"[SUM] %6.2f-%-6.2f sec %ss %ss/sec %s\n";
|
2009-10-23 22:30:17 +00:00
|
|
|
|
2012-11-09 16:02:42 -08:00
|
|
|
const char report_sum_bw_retrans_format[] =
|
2014-02-14 11:17:43 -08:00
|
|
|
"[SUM] %6.2f-%-6.2f sec %ss %ss/sec %3d %s\n";
|
2009-10-23 22:30:17 +00:00
|
|
|
|
2012-11-09 16:02:42 -08:00
|
|
|
const char report_sum_bw_udp_format[] =
|
2013-12-04 09:16:37 -08:00
|
|
|
"[SUM] %6.2f-%-6.2f sec %ss %ss/sec %5.3f ms %d/%d (%.2g%%) %s\n";
|
|
|
|
|
|
|
|
const char report_sum_bw_udp_sender_format[] =
|
|
|
|
"[SUM] %6.2f-%-6.2f sec %ss %ss/sec %d %s\n";
|
2009-10-23 22:30:17 +00:00
|
|
|
|
2013-11-11 12:16:38 -08:00
|
|
|
const char report_omitted[] = "(omitted)";
|
2013-10-24 14:08:04 -07:00
|
|
|
|
2012-11-09 16:02:42 -08:00
|
|
|
const char report_bw_separator[] =
|
|
|
|
"- - - - - - - - - - - - - - - - - - - - - - - - -\n";
|
|
|
|
|
2009-10-23 22:30:17 +00:00
|
|
|
const char report_outoforder[] =
|
|
|
|
"[%3d] %4.1f-%4.1f sec %d datagrams received out-of-order\n";
|
|
|
|
|
|
|
|
const char report_sum_outoforder[] =
|
|
|
|
"[SUM] %4.1f-%4.1f sec %d datagrams received out-of-order\n";
|
|
|
|
|
|
|
|
const char report_peer[] =
|
|
|
|
"[%3d] local %s port %u connected with %s port %u\n";
|
|
|
|
|
|
|
|
const char report_mss_unsupported[] =
|
|
|
|
"[%3d] MSS and MTU size unknown (TCP_MAXSEG not supported by OS?)\n";
|
|
|
|
|
|
|
|
const char report_mss[] =
|
|
|
|
"[%3d] MSS size %d bytes (MTU %d bytes, %s)\n";
|
|
|
|
|
|
|
|
const char report_datagrams[] =
|
|
|
|
"[%3d] Sent %d datagrams\n";
|
|
|
|
|
|
|
|
const char report_sum_datagrams[] =
|
|
|
|
"[SUM] Sent %d datagrams\n";
|
|
|
|
|
|
|
|
const char server_reporting[] =
|
|
|
|
"[%3d] Server Report:\n";
|
|
|
|
|
|
|
|
const char reportCSV_peer[] =
|
|
|
|
"%s,%u,%s,%u";
|
|
|
|
|
2013-11-11 11:37:07 -08:00
|
|
|
const char report_cpu[] =
|
2013-11-26 14:47:15 -08:00
|
|
|
"CPU Utilization: %s/%s %.1f%% (%.1f%%u/%.1f%%s), %s/%s %.1f%% (%.1f%%u/%.1f%%s)\n";
|
2013-11-11 11:37:07 -08:00
|
|
|
|
|
|
|
const char report_local[] = "local";
|
|
|
|
const char report_remote[] = "remote";
|
|
|
|
const char report_sender[] = "sender";
|
|
|
|
const char report_receiver[] = "receiver";
|
|
|
|
|
2009-10-23 22:30:17 +00:00
|
|
|
#if defined(linux)
|
|
|
|
const char report_tcpInfo[] =
|
2009-11-16 20:10:48 +00:00
|
|
|
"event=TCP_Info CWND=%u SND_SSTHRESH=%u RCV_SSTHRESH=%u UNACKED=%u SACK=%u LOST=%u RETRANS=%u FACK=%u RTT=%u REORDERING=%u\n";
|
2009-10-23 22:30:17 +00:00
|
|
|
#endif
|
|
|
|
#if defined(__FreeBSD__)
|
|
|
|
const char report_tcpInfo[] =
|
2009-11-16 20:10:48 +00:00
|
|
|
"event=TCP_Info CWND=%u RCV_WIND=%u SND_SSTHRESH=%u RTT=%u\n";
|
2009-10-23 22:30:17 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_QUAD_SUPPORT
|
|
|
|
#ifdef HAVE_PRINTF_QD
|
|
|
|
const char reportCSV_bw_format[] =
|
|
|
|
"%s,%s,%d,%.1f-%.1f,%qd,%qd\n";
|
|
|
|
|
2012-11-09 16:02:42 -08:00
|
|
|
const char reportCSV_bw_udp_format[] =
|
2009-10-23 22:30:17 +00:00
|
|
|
"%s,%s,%d,%.1f-%.1f,%qd,%qd,%.3f,%d,%d,%.3f,%d\n";
|
|
|
|
#else // HAVE_PRINTF_QD
|
|
|
|
const char reportCSV_bw_format[] =
|
|
|
|
"%s,%s,%d,%.1f-%.1f,%lld,%lld\n";
|
|
|
|
|
2012-11-09 16:02:42 -08:00
|
|
|
const char reportCSV_bw_udp_format[] =
|
2009-10-23 22:30:17 +00:00
|
|
|
"%s,%s,%d,%.1f-%.1f,%lld,%lld,%.3f,%d,%d,%.3f,%d\n";
|
|
|
|
#endif // HAVE_PRINTF_QD
|
|
|
|
#else // HAVE_QUAD_SUPPORT
|
|
|
|
#ifdef WIN32
|
|
|
|
const char reportCSV_bw_format[] =
|
|
|
|
"%s,%s,%d,%.1f-%.1f,%I64d,%I64d\n";
|
|
|
|
|
2012-11-09 16:02:42 -08:00
|
|
|
const char reportCSV_bw_udp_format[] =
|
2009-10-23 22:30:17 +00:00
|
|
|
"%s,%s,%d,%.1f-%.1f,%I64d,%I64d,%.3f,%d,%d,%.3f,%d\n";
|
|
|
|
#else
|
|
|
|
const char reportCSV_bw_format[] =
|
|
|
|
"%s,%s,%d,%.1f-%.1f,%d,%d\n";
|
|
|
|
|
2012-11-09 16:02:42 -08:00
|
|
|
const char reportCSV_bw_udp_format[] =
|
2009-10-23 22:30:17 +00:00
|
|
|
"%s,%s,%d,%.1f-%.1f,%d,%d,%.3f,%d,%d,%.3f,%d\n";
|
|
|
|
#endif //WIN32
|
|
|
|
#endif //HAVE_QUAD_SUPPORT
|
|
|
|
/* -------------------------------------------------------------------
|
|
|
|
* warnings
|
|
|
|
* ------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
const char warn_window_requested[] =
|
|
|
|
" (WARNING: requested %s)";
|
|
|
|
|
2013-12-04 09:16:37 -08:00
|
|
|
const char warn_window_small[] =
|
|
|
|
"WARNING: TCP window size set to %d bytes. A small window size\n\
|
2009-10-23 22:30:17 +00:00
|
|
|
will give poor performance. See the Iperf documentation.\n";
|
|
|
|
|
|
|
|
const char warn_delay_large[] =
|
|
|
|
"WARNING: delay too large, reducing from %.1f to 1.0 seconds.\n";
|
|
|
|
|
|
|
|
const char warn_no_pathmtu[] =
|
|
|
|
"WARNING: Path MTU Discovery may not be enabled.\n";
|
|
|
|
|
|
|
|
const char warn_no_ack[]=
|
|
|
|
"[%3d] WARNING: did not receive ack of last datagram after %d tries.\n";
|
|
|
|
|
|
|
|
const char warn_ack_failed[]=
|
|
|
|
"[%3d] WARNING: ack of last datagram failed after %d tries.\n";
|
|
|
|
|
|
|
|
const char warn_fileopen_failed[]=
|
|
|
|
"WARNING: Unable to open file stream for transfer\n\
|
|
|
|
Using default data stream. \n";
|
|
|
|
|
|
|
|
const char unable_to_change_win[]=
|
|
|
|
"WARNING: Unable to change the window size\n";
|
|
|
|
|
|
|
|
const char opt_estimate[]=
|
|
|
|
"Optimal Estimate\n";
|
|
|
|
|
|
|
|
const char report_interval_small[] =
|
|
|
|
"WARNING: interval too small, increasing from %3.2f to 0.5 seconds.\n";
|
|
|
|
|
|
|
|
const char warn_invalid_server_option[] =
|
|
|
|
"WARNING: option -%c is not valid for server mode\n";
|
|
|
|
|
|
|
|
const char warn_invalid_client_option[] =
|
|
|
|
"WARNING: option -%c is not valid for client mode\n";
|
|
|
|
|
|
|
|
const char warn_invalid_compatibility_option[] =
|
|
|
|
"WARNING: option -%c is not valid in compatibility mode\n";
|
|
|
|
|
|
|
|
const char warn_implied_udp[] =
|
|
|
|
"WARNING: option -%c implies udp testing\n";
|
|
|
|
|
|
|
|
const char warn_implied_compatibility[] =
|
|
|
|
"WARNING: option -%c has implied compatibility mode\n";
|
|
|
|
|
|
|
|
const char warn_buffer_too_small[] =
|
|
|
|
"WARNING: the UDP buffer was increased to %d for proper operation\n";
|
|
|
|
|
|
|
|
const char warn_invalid_single_threaded[] =
|
|
|
|
"WARNING: option -%c is not valid in single threaded versions\n";
|
|
|
|
|
|
|
|
const char warn_invalid_report_style[] =
|
|
|
|
"WARNING: unknown reporting style \"%s\", switching to default\n";
|
|
|
|
|
|
|
|
const char warn_invalid_report[] =
|
|
|
|
"WARNING: unknown reporting type \"%c\", ignored\n valid options are:\n\t exclude: C(connection) D(data) M(multicast) S(settings) V(server) report\n\n";
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* end extern "C" */
|
|
|
|
#endif
|