Skip to content

Commit

Permalink
Merge pull request #1137 from esnet/issue-1134
Browse files Browse the repository at this point in the history
  • Loading branch information
bmah888 authored Apr 14, 2021
2 parents 1e33e72 + c357829 commit 670a596
Showing 1 changed file with 30 additions and 12 deletions.
42 changes: 30 additions & 12 deletions src/iperf_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -4512,13 +4512,14 @@ iperf_clearaffinity(struct iperf_test *test)
#endif /* neither HAVE_SCHED_SETAFFINITY nor HAVE_CPUSET_SETAFFINITY nor HAVE_SETPROCESSAFFINITYMASK */
}

char iperf_timestr[100];
static char iperf_timestr[100];
static char linebuffer[1024];

int
iperf_printf(struct iperf_test *test, const char* format, ...)
{
va_list argp;
int r = -1;
int r = 0, r0;
time_t now;
struct tm *ltm = NULL;
char *ct = NULL;
Expand All @@ -4545,23 +4546,40 @@ iperf_printf(struct iperf_test *test, const char* format, ...)
*/
if (test->role == 'c') {
if (ct) {
fprintf(test->outfile, "%s", ct);
r0 = fprintf(test->outfile, "%s", ct);
if (r0 < 0)
return r0;
r += r0;
}
if (test->title)
fprintf(test->outfile, "%s: ", test->title);
if (test->title) {
r0 = fprintf(test->outfile, "%s: ", test->title);
if (r0 < 0)
return r0;
r += r0;
}
va_start(argp, format);
r = vfprintf(test->outfile, format, argp);
r0 = vfprintf(test->outfile, format, argp);
va_end(argp);
if (r0 < 0)
return r0;
r += r0;
}
else if (test->role == 's') {
char linebuffer[1024];
int i = 0;
if (ct) {
i = sprintf(linebuffer, "%s", ct);
r0 = snprintf(linebuffer, sizeof(linebuffer), "%s", ct);
if (r0 < 0)
return r0;
r += r0;
}
va_start(argp, format);
r = vsnprintf(linebuffer + i, sizeof(linebuffer), format, argp);
va_end(argp);
/* Should always be true as long as sizeof(ct) < sizeof(linebuffer) */
if (r < sizeof(linebuffer)) {
va_start(argp, format);
r0 = vsnprintf(linebuffer + r, sizeof(linebuffer) - r, format, argp);
va_end(argp);
if (r0 < 0)
return r0;
r += r0;
}
fprintf(test->outfile, "%s", linebuffer);

if (test->role == 's' && iperf_get_test_get_server_output(test)) {
Expand Down

0 comments on commit 670a596

Please sign in to comment.