nexmon – Blame information for rev 1
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | office | 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 | extern const char usage_long1[]; |
||
67 | extern const char usage_long2[]; |
||
68 | |||
69 | extern const char version[]; |
||
70 | |||
71 | /* ------------------------------------------------------------------- |
||
72 | * settings |
||
73 | * ------------------------------------------------------------------- */ |
||
74 | |||
75 | extern const char separator_line[]; |
||
76 | |||
77 | extern const char server_port[]; |
||
78 | |||
79 | extern const char client_port[]; |
||
80 | |||
81 | extern const char server_pid_port[]; |
||
82 | |||
83 | extern const char client_pid_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 client_datagram_size_kalman[]; |
||
94 | |||
95 | extern const char server_datagram_size[]; |
||
96 | |||
97 | extern const char tcp_window_size[]; |
||
98 | |||
99 | extern const char udp_buffer_size[]; |
||
100 | |||
101 | extern const char window_default[]; |
||
102 | |||
103 | extern const char wait_server_threads[]; |
||
104 | |||
105 | /* ------------------------------------------------------------------- |
||
106 | * Legacy reports |
||
107 | * ------------------------------------------------------------------- */ |
||
108 | |||
109 | extern const char report_bw_header[]; |
||
110 | |||
111 | extern const char report_bw_format[]; |
||
112 | |||
113 | extern const char report_sum_bw_format[]; |
||
114 | |||
115 | extern const char report_bw_read_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 | /* ------------------------------------------------------------------- |
||
124 | * Enhanced reports (per -e) |
||
125 | * ------------------------------------------------------------------- */ |
||
126 | |||
127 | extern const char report_bw_enhanced_format[]; |
||
128 | |||
129 | extern const char report_sum_bw_enhanced_format[]; |
||
130 | |||
131 | extern const char report_bw_read_enhanced_header[]; |
||
132 | |||
133 | extern const char report_bw_read_enhanced_format[]; |
||
134 | |||
135 | extern const char report_sum_bw_read_enhanced_format[]; |
||
136 | |||
137 | extern const char report_bw_write_enhanced_header[]; |
||
138 | |||
139 | extern const char report_bw_write_enhanced_format[]; |
||
140 | |||
141 | extern const char report_sum_bw_write_enhanced_format[]; |
||
142 | |||
143 | extern const char report_bw_pps_enhanced_header[]; |
||
144 | |||
145 | extern const char report_bw_pps_enhanced_format[]; |
||
146 | |||
147 | extern const char report_sum_bw_pps_enhanced_format[]; |
||
148 | |||
149 | extern const char report_bw_jitter_loss_enhanced_header[]; |
||
150 | |||
151 | extern const char report_bw_jitter_loss_enhanced_format[]; |
||
152 | |||
153 | extern const char report_bw_jitter_loss_suppress_enhanced_format[]; |
||
154 | |||
155 | extern const char report_sum_bw_jitter_loss_enhanced_format[]; |
||
156 | |||
157 | /* ------------------------------------------------------------------- |
||
158 | * Misc reports |
||
159 | * ------------------------------------------------------------------- */ |
||
160 | |||
161 | extern const char report_outoforder[]; |
||
162 | |||
163 | extern const char report_sum_outoforder[]; |
||
164 | |||
165 | extern const char report_peer[]; |
||
166 | |||
167 | extern const char report_mss_unsupported[]; |
||
168 | |||
169 | extern const char report_mss[]; |
||
170 | |||
171 | extern const char report_datagrams[]; |
||
172 | |||
173 | extern const char report_sum_datagrams[]; |
||
174 | |||
175 | extern const char server_reporting[]; |
||
176 | |||
177 | extern const char reportCSV_peer[]; |
||
178 | |||
179 | extern const char reportCSV_bw_format[]; |
||
180 | |||
181 | extern const char reportCSV_bw_jitter_loss_format[]; |
||
182 | |||
183 | /* ------------------------------------------------------------------- |
||
184 | * warnings |
||
185 | * ------------------------------------------------------------------- */ |
||
186 | |||
187 | extern const char warn_window_requested[]; |
||
188 | |||
189 | extern const char warn_window_small[]; |
||
190 | |||
191 | extern const char warn_delay_large[]; |
||
192 | |||
193 | extern const char warn_no_pathmtu[]; |
||
194 | |||
195 | extern const char warn_no_ack[]; |
||
196 | |||
197 | extern const char warn_ack_failed[]; |
||
198 | |||
199 | extern const char warn_fileopen_failed[]; |
||
200 | |||
201 | extern const char unable_to_change_win[]; |
||
202 | |||
203 | extern const char opt_estimate[]; |
||
204 | |||
205 | extern const char report_interval_small[]; |
||
206 | |||
207 | extern const char warn_invalid_server_option[]; |
||
208 | |||
209 | extern const char warn_invalid_client_option[]; |
||
210 | |||
211 | extern const char warn_invalid_compatibility_option[]; |
||
212 | |||
213 | extern const char warn_implied_udp[]; |
||
214 | |||
215 | extern const char warn_implied_compatibility[]; |
||
216 | |||
217 | extern const char warn_buffer_too_small[]; |
||
218 | |||
219 | extern const char warn_invalid_single_threaded[]; |
||
220 | |||
221 | extern const char warn_invalid_report_style[]; |
||
222 | |||
223 | extern const char warn_invalid_report[]; |
||
224 | |||
225 | #ifdef __cplusplus |
||
226 | } /* end extern "C" */ |
||
227 | #endif |
||
228 | #endif // LOCALE_H |
||
229 | |||
230 | |||
231 | |||
232 | |||
233 | |||
234 | |||
235 | |||
236 | |||
237 | |||
238 |