1 /* 2 * iperf, Copyright (c) 2014-2018, The Regents of the University of 3 * California, through Lawrence Berkeley National Laboratory (subject 4 * to receipt of any required approvals from the U.S. Dept. of 5 * Energy). All rights reserved. 6 * 7 * If you have questions about your rights to use or distribute this 8 * software, please contact Berkeley Lab's Technology Transfer 9 * Department at TTD (at) lbl.gov. 10 * 11 * NOTICE. This software is owned by the U.S. Department of Energy. 12 * As such, the U.S. Government has been granted for itself and others 13 * acting on its behalf a paid-up, nonexclusive, irrevocable, 14 * worldwide license in the Software to reproduce, prepare derivative 15 * works, and perform publicly and display publicly. Beginning five 16 * (5) years after the date permission to assert copyright is obtained 17 * from the U.S. Department of Energy, and subject to any subsequent 18 * five (5) year renewals, the U.S. Government is granted for itself 19 * and others acting on its behalf a paid-up, nonexclusive, 20 * irrevocable, worldwide license in the Software to reproduce, 21 * prepare derivative works, distribute copies to the public, perform 22 * publicly and display publicly, and to permit others to do so. 23 * 24 * This code is distributed under a BSD style license, see the LICENSE 25 * file for complete information. 26 */ 27 #ifndef IPERF_LOCALE_H 28 #define IPERF_LOCALE_H 29 30 extern const char usage_shortstr[]; 31 extern const char usage_longstr[]; 32 extern const char version[]; 33 34 extern const char seperator_line[]; 35 36 extern const char server_port[] ; 37 extern const char client_port[] ; 38 extern const char bind_address[] ; 39 extern const char multicast_ttl[] ; 40 extern const char join_multicast[] ; 41 extern const char client_datagram_size[] ; 42 extern const char server_datagram_size[] ; 43 extern const char tcp_window_size[] ; 44 extern const char udp_buffer_size[] ; 45 extern const char window_default[] ; 46 extern const char wait_server_threads[] ; 47 extern const char test_start_time[]; 48 extern const char test_start_bytes[]; 49 extern const char test_start_blocks[]; 50 51 extern const char report_time[] ; 52 extern const char report_connecting[] ; 53 extern const char report_reverse[] ; 54 extern const char report_accepted[] ; 55 extern const char report_cookie[] ; 56 extern const char report_connected[] ; 57 extern const char report_authetication_successed[] ; 58 extern const char report_authetication_failed[] ; 59 extern const char report_window[] ; 60 extern const char report_autotune[] ; 61 extern const char report_omit_done[] ; 62 extern const char report_diskfile[] ; 63 extern const char report_done[] ; 64 extern const char report_read_lengths[] ; 65 extern const char report_read_length_times[] ; 66 extern const char report_bw_header[] ; 67 extern const char report_bw_header_bidir[] ; 68 extern const char report_bw_retrans_header[] ; 69 extern const char report_bw_retrans_header_bidir[] ; 70 extern const char report_bw_retrans_cwnd_header[] ; 71 extern const char report_bw_retrans_cwnd_header_bidir[] ; 72 extern const char report_bw_udp_header[] ; 73 extern const char report_bw_udp_header_bidir[] ; 74 extern const char report_bw_udp_sender_header[] ; 75 extern const char report_bw_udp_sender_header_bidir[] ; 76 extern const char report_bw_format[] ; 77 extern const char report_bw_retrans_format[] ; 78 extern const char report_bw_retrans_cwnd_format[] ; 79 extern const char report_bw_udp_format[] ; 80 extern const char report_bw_udp_sender_format[] ; 81 extern const char report_summary[] ; 82 extern const char report_sum_bw_format[] ; 83 extern const char report_sum_bw_retrans_format[] ; 84 extern const char report_sum_bw_udp_format[] ; 85 extern const char report_sum_bw_udp_sender_format[] ; 86 extern const char report_omitted[] ; 87 extern const char report_bw_separator[] ; 88 extern const char report_outoforder[] ; 89 extern const char report_sum_outoforder[] ; 90 extern const char report_peer[] ; 91 extern const char report_mss_unsupported[] ; 92 extern const char report_mss[] ; 93 extern const char report_datagrams[] ; 94 extern const char report_sum_datagrams[] ; 95 extern const char server_reporting[] ; 96 extern const char reportCSV_peer[] ; 97 98 extern const char report_cpu[] ; 99 extern const char report_local[] ; 100 extern const char report_remote[] ; 101 extern const char report_sender[] ; 102 extern const char report_receiver[] ; 103 extern const char report_sender_not_available_format[]; 104 extern const char report_sender_not_available_summary_format[]; 105 extern const char report_receiver_not_available_format[]; 106 extern const char report_receiver_not_available_summary_format[]; 107 108 extern const char report_tcpInfo[] ; 109 extern const char report_tcpInfo[] ; 110 111 112 extern const char warn_window_requested[] ; 113 extern const char warn_window_small[] ; 114 extern const char warn_delay_large[] ; 115 extern const char warn_no_pathmtu[] ; 116 extern const char warn_no_ack[]; 117 extern const char warn_ack_failed[]; 118 extern const char warn_fileopen_failed[]; 119 extern const char unable_to_change_win[]; 120 extern const char opt_estimate[]; 121 extern const char report_interval_small[] ; 122 extern const char warn_invalid_server_option[] ; 123 extern const char warn_invalid_client_option[] ; 124 extern const char warn_invalid_compatibility_option[] ; 125 extern const char warn_implied_udp[] ; 126 extern const char warn_implied_compatibility[] ; 127 extern const char warn_buffer_too_small[] ; 128 extern const char warn_invalid_single_threaded[] ; 129 extern const char warn_invalid_report_style[] ; 130 extern const char warn_invalid_report[] ; 131 132 #endif 133