]> sjero.net Git - iperf/blob - include/Locale.h
DCCP support for iperf
[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 extern const char usage_long[];
66 extern const char version[];
67
68 /* -------------------------------------------------------------------
69  * settings
70  * ------------------------------------------------------------------- */
71
72 extern const char seperator_line[];
73
74 extern const char server_port[];
75
76 extern const char client_port[];
77
78 extern const char bind_address[];
79
80 extern const char multicast_ttl[];
81
82 extern const char join_multicast[];
83
84 extern const char client_datagram_size[];
85
86 extern const char server_datagram_size[];
87
88 extern const char tcp_window_size[];
89
90 extern const char dgram_buffer_size[];
91
92 extern const char window_default[];
93
94 extern const char wait_server_threads[];
95
96 /* -------------------------------------------------------------------
97  * reports
98  * ------------------------------------------------------------------- */
99
100 extern const char report_read_lengths[];
101
102 extern const char report_read_length_times[];
103
104 extern const char report_bw_header[];
105
106 extern const char report_bw_format[];
107
108 extern const char report_sum_bw_format[];
109
110 extern const char report_bw_jitter_loss_header[];
111
112 extern const char report_bw_jitter_loss_format[];
113
114 extern const char report_sum_bw_jitter_loss_format[];
115
116 extern const char report_outoforder[];
117
118 extern const char report_sum_outoforder[];
119
120 extern const char report_peer[];
121
122 extern const char report_mss_unsupported[];
123
124 extern const char report_mss[];
125
126 extern const char report_datagrams[];
127
128 extern const char report_sum_datagrams[];
129
130 extern const char server_reporting[];
131
132 extern const char reportCSV_peer[];
133
134 extern const char reportCSV_bw_format[];
135
136 extern const char reportCSV_bw_jitter_loss_format[];
137
138 /* -------------------------------------------------------------------
139  * warnings
140  * ------------------------------------------------------------------- */
141
142 extern const char warn_window_requested[];
143
144 extern const char warn_window_small[];
145
146 extern const char warn_delay_large[];
147
148 extern const char warn_no_pathmtu[];
149
150 extern const char warn_no_ack[];
151
152 extern const char warn_ack_failed[];
153
154 extern const char warn_fileopen_failed[];
155
156 extern const char unable_to_change_win[];
157
158 extern const char opt_estimate[];
159
160 extern const char report_interval_small[];
161
162 extern const char warn_invalid_server_option[];
163
164 extern const char warn_invalid_client_option[];
165
166 extern const char warn_invalid_compatibility_option[];
167
168 extern const char warn_implied_compatibility[];
169
170 extern const char warn_buffer_too_small[];
171
172 extern const char warn_invalid_single_threaded[];
173
174 extern const char warn_invalid_report_style[];
175
176 extern const char warn_invalid_report[];
177
178 #ifdef __cplusplus
179 } /* end extern "C" */
180 #endif
181 #endif // LOCALE_H
182
183
184
185
186
187
188
189
190
191