aboutsummaryrefslogtreecommitdiff
path: root/src/iperf_server_api.c
diff options
context:
space:
mode:
authorJef Poskanzer <jef@mail.acme.com>2013-11-11 11:18:46 -0800
committerJef Poskanzer <jef@mail.acme.com>2013-11-11 11:18:46 -0800
commit558c9b80136cff3fa5cc2c9158f48a1c2113a4e6 (patch)
tree43d0aba38f12fada99fb955caad27a703a5753ad /src/iperf_server_api.c
parent55ace3e28b5d48773a693f95abb7aeca85b8e417 (diff)
downloadiperf3-558c9b80136cff3fa5cc2c9158f48a1c2113a4e6.tar.gz
Moved a bunch more output strings to locale.[hc].
Diffstat (limited to 'src/iperf_server_api.c')
-rw-r--r--src/iperf_server_api.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/iperf_server_api.c b/src/iperf_server_api.c
index 1b1622b..9fb52d1 100644
--- a/src/iperf_server_api.c
+++ b/src/iperf_server_api.c
@@ -88,10 +88,10 @@ iperf_server_listen(struct iperf_test *test)
if (test->settings->socket_bufsize > 0) {
unit_snprintf(ubuf, UNIT_LEN, (double) x, 'A');
if (!test->json_output)
- iprintf(test, "TCP window size: %s\n", ubuf);
+ iprintf(test, report_window, ubuf);
} else {
if (!test->json_output)
- iprintf(test, "Using TCP Autotuning\n");
+ iprintf(test, "%s", report_autotune);
}
}
*/
@@ -343,7 +343,7 @@ server_omit_timer_proc(TimerClientData client_data, struct timeval *nowP)
test->omitting = 0;
iperf_reset_stats(test);
if (test->verbose && !test->json_output && test->reporter_interval == 0)
- iprintf(test, "Finished omit period, starting real test\n");
+ iprintf(test, "%s", report_omit_done);
/* Reset the timers. */
if (test->stats_timer != NULL)