]> sjero.net Git - iperf/blob - include/Locale.h
Original 2.0.2 iperf sources
[iperf] / include / Locale.h
1 /*--------------------------------------------------------------- 
2  * Copyright (c) 1999,2000,2001,2002,2003                              
3  * The Board of Trustees of the University of Illinois            
4  * All Rights Reserved.                                           
5  *--------------------------------------------------------------- 
6  * Permission is hereby granted, free of charge, to any person    
7  * obtaining a copy of this software (Iperf) and associated       
8  * documentation files (the "Software"), to deal in the Software  
9  * without restriction, including without limitation the          
10  * rights to use, copy, modify, merge, publish, distribute,        
11  * sublicense, and/or sell copies of the Software, and to permit     
12  * persons to whom the Software is furnished to do
13  * so, subject to the following conditions: 
14  *
15  *     
16  * Redistributions of source code must retain the above 
17  * copyright notice, this list of conditions and 
18  * the following disclaimers. 
19  *
20  *     
21  * Redistributions in binary form must reproduce the above 
22  * copyright notice, this list of conditions and the following 
23  * disclaimers in the documentation and/or other materials 
24  * provided with the distribution. 
25  * 
26  *     
27  * Neither the names of the University of Illinois, NCSA, 
28  * nor the names of its contributors may be used to endorse 
29  * or promote products derived from this Software without
30  * specific prior written permission. 
31  * 
32  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 
33  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
34  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
35  * NONINFRINGEMENT. IN NO EVENT SHALL THE CONTIBUTORS OR COPYRIGHT 
36  * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
37  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 
38  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE
39  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 
40  * ________________________________________________________________
41  * National Laboratory for Applied Network Research 
42  * National Center for Supercomputing Applications 
43  * University of Illinois at Urbana-Champaign 
44  * http://www.ncsa.uiuc.edu
45  * ________________________________________________________________ 
46  *
47  * Locale.h
48  * by Ajay Tirumala <tirumala@ncsa.uiuc.edu>
49  * & Mark Gates <mgates@nlanr.net>
50  * -------------------------------------------------------------------
51  * Strings and other stuff that is locale specific.
52  * ------------------------------------------------------------------- */
53
54 #ifndef LOCALE_H
55 #define LOCALE_H
56
57 #ifdef __cplusplus
58 extern "C" {
59 #endif
60 /* -------------------------------------------------------------------
61  * usage
62  * ------------------------------------------------------------------- */
63
64 extern const char usage_short[];
65
66 #ifdef WIN32
67 extern const char usage_long1[];
68 extern const char usage_long2[];
69 #else
70 extern const char usage_long[];
71 #endif
72
73 extern const char version[];
74
75 /* -------------------------------------------------------------------
76  * settings
77  * ------------------------------------------------------------------- */
78
79 extern const char seperator_line[];
80
81 extern const char server_port[];
82
83 extern const char client_port[];
84
85 extern const char bind_address[];
86
87 extern const char multicast_ttl[];
88
89 extern const char join_multicast[];
90
91 extern const char client_datagram_size[];
92
93 extern const char server_datagram_size[];
94
95 extern const char tcp_window_size[];
96
97 extern const char udp_buffer_size[];
98
99 extern const char window_default[];
100
101 extern const char wait_server_threads[];
102
103 /* -------------------------------------------------------------------
104  * reports
105  * ------------------------------------------------------------------- */
106
107 extern const char report_read_lengths[];
108
109 extern const char report_read_length_times[];
110
111 extern const char report_bw_header[];
112
113 extern const char report_bw_format[];
114
115 extern const char report_sum_bw_format[];
116
117 extern const char report_bw_jitter_loss_header[];
118
119 extern const char report_bw_jitter_loss_format[];
120
121 extern const char report_sum_bw_jitter_loss_format[];
122
123 extern const char report_outoforder[];
124
125 extern const char report_sum_outoforder[];
126
127 extern const char report_peer[];
128
129 extern const char report_mss_unsupported[];
130
131 extern const char report_mss[];
132
133 extern const char report_datagrams[];
134
135 extern const char report_sum_datagrams[];
136
137 extern const char server_reporting[];
138
139 extern const char reportCSV_peer[];
140
141 extern const char reportCSV_bw_format[];
142
143 extern const char reportCSV_bw_jitter_loss_format[];
144
145 /* -------------------------------------------------------------------
146  * warnings
147  * ------------------------------------------------------------------- */
148
149 extern const char warn_window_requested[];
150
151 extern const char warn_window_small[];
152
153 extern const char warn_delay_large[];
154
155 extern const char warn_no_pathmtu[];
156
157 extern const char warn_no_ack[];
158
159 extern const char warn_ack_failed[];
160
161 extern const char warn_fileopen_failed[];
162
163 extern const char unable_to_change_win[];
164
165 extern const char opt_estimate[];
166
167 extern const char report_interval_small[];
168
169 extern const char warn_invalid_server_option[];
170
171 extern const char warn_invalid_client_option[];
172
173 extern const char warn_invalid_compatibility_option[];
174
175 extern const char warn_implied_udp[];
176
177 extern const char warn_implied_compatibility[];
178
179 extern const char warn_buffer_too_small[];
180
181 extern const char warn_invalid_single_threaded[];
182
183 extern const char warn_invalid_report_style[];
184
185 extern const char warn_invalid_report[];
186
187 #ifdef __cplusplus
188 } /* end extern "C" */
189 #endif
190 #endif // LOCALE_H
191
192
193
194
195
196
197
198
199
200