-
Notifications
You must be signed in to change notification settings - Fork 0
/
mpong.c
659 lines (592 loc) · 20.8 KB
/
mpong.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
/* mpong.c */
/* Program to do ping-pong round-trip latency measurements using
* multicast.
* See https://community.informatica.com/solutions/1470 for more info.
*
* Author: 29West/Informatica (with small parts of the code borrowed
* from [email protected]'s "mdump" program)
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted without restriction.
*
THE SOFTWARE IS PROVIDED "AS IS" AND INFORMATICA DISCLAIMS ALL WARRANTIES
EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF
NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR
PURPOSE. INFORMATICA DOES NOT WARRANT THAT USE OF THE SOFTWARE WILL BE
UNINTERRUPTED OR ERROR-FREE. INFORMATICA SHALL NOT, UNDER ANY CIRCUMSTANCES,
BE LIABLE TO LICENSEE FOR LOST PROFITS, CONSEQUENTIAL, INCIDENTAL, SPECIAL OR
INDIRECT DAMAGES ARISING OUT OF OR RELATED TO THIS AGREEMENT OR THE
TRANSACTIONS CONTEMPLATED HEREUNDER, EVEN IF INFORMATICA HAS BEEN APPRISED OF
THE LIKELIHOOD OF SUCH DAMAGES.
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <math.h>
/* Many of the following definitions are intended to make it easier to write
* portable code between windows and unix. */
/* use our own form of getopt */
extern int toptind;
extern int toptreset;
extern char *toptarg;
int tgetopt(int nargc, char * const *nargv, const char *ostr);
#if defined(_WIN32)
// Windows-only includes
#include <windows.h>
#include <winsock2.h>
typedef unsigned long socklen_t;
#define SLEEP_SEC(s) Sleep((s) * 1000)
#define SLEEP_MSEC(s) Sleep(s)
#define ERRNO GetLastError()
#define CLOSESOCKET closesocket
#define TLONGLONG signed __int64
#include <ws2tcpip.h>
#include <sys\types.h>
#include <sys\timeb.h>
#define perror(x) fprintf(stderr,"%s: %d\n",x,GetLastError())
#else
// Unix-only includes
#define HAVE_PTHREAD_H
#include <signal.h>
#include <unistd.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <errno.h>
#include <pthread.h>
#define SLEEP_SEC(s) sleep(s)
#define SLEEP_MSEC(s) usleep((s) * 1000)
#define CLOSESOCKET close
#define ERRNO errno
#define SOCKET int
#define INVALID_SOCKET -1
#define SOCKET_ERROR -1
#define TLONGLONG signed long long
# include <sys/time.h>
#endif
#define EXIT(x) do { fprintf(stdout, "Exit, file: '%s', line: %d\n", __FILE__, __LINE__); exit(x); } while (0)
/* program name (from argv[0] */
char *prog_name = "xxx";
/* program options */
int o_initiator;
FILE *o_output;
int o_rcvbuf_size;
int o_Sndbuf_size;
int o_samples;
int o_verbose;
/* program positional parameters */
unsigned long int groupaddr;
unsigned short int groupport;
unsigned char ttlvar;
char *bind_if;
struct timeval *start_tvs;
struct timeval *end_tvs;
char usage_str[] = "[-h] [-i] [-o ofile] [-r rcvbuf_size] [-S Sndbuf_size] [-s samples] [-v] group port [ttl] [interface]";
void usage(char *msg)
{
if (msg != NULL)
fprintf(stderr, "\n%s\n\n", msg);
fprintf(stderr, "Usage: %s %s\n\n"
"(use -h for detailed help)\n",
prog_name, usage_str);
} /* usage */
void help(char *msg)
{
if (msg != NULL)
fprintf(stderr, "\n%s\n\n", msg);
fprintf(stderr, "Usage: %s %s\n", prog_name, usage_str);
fprintf(stderr, "Where:\n"
" -h : help\n"
" -i : initiator (sends first packet) [reflector]\n"
" -o ofile : print results to file (in addition to stdout)\n"
" -r rcvbuf_size : size (bytes) of UDP receive buffer (SO_RCVBUF) [4194304]\n"
" (use 0 for system default buff size)\n"
" -S Sndbuf_size : size (bytes) of UDP send buffer (SO_SNDBUF) [65536]\n"
" (use 0 for system default buff size)\n"
" -s samples : number of cycles to measure [65536]\n"
" -v : verbose (print each RTT sample)\n"
"\n"
" group : multicast address to send on (use '0.0.0.0' for unicast)\n"
" port : destination port\n"
" interface : optional IP addr of local interface (for multi-homed hosts) [INADDR_ANY]\n"
"\n"
"Note: initiator sends on supplied port + 1, reflector replies on supplied port\n"
);
} /* help */
/* After doing arithmetic on tv variables, you can end up with strange values.
* (Code borrowed from ACE) */
void normalize_tv(struct timeval *tv)
{
if (tv->tv_usec >= 1000000) {
do { tv->tv_sec++; tv->tv_usec -= 1000000; } while (tv->tv_usec >= 1000000);
} else if (tv->tv_usec <= -1000000) {
do { tv->tv_sec--; tv->tv_usec += 1000000; } while (tv->tv_usec <= -1000000);
}
if (tv->tv_sec >= 1 && tv->tv_usec < 0) {
tv->tv_sec--; tv->tv_usec += 1000000;
} else if (tv->tv_sec < 0 && tv->tv_usec > 0) {
tv->tv_sec++; tv->tv_usec -= 1000000;
}
} /* normalize_tv */
/* Utility function to return current time of day */
void current_tv(struct timeval *tv)
{
#if defined(_WIN32)
LARGE_INTEGER ticks;
static LARGE_INTEGER freq;
static int first = 1;
if (first) {
QueryPerformanceFrequency(&freq);
first = 0;
}
QueryPerformanceCounter(&ticks);
tv->tv_sec = 0;
tv->tv_usec = (1000000 * ticks.QuadPart / freq.QuadPart);
normalize_tv(tv);
#else
gettimeofday(tv,NULL);
#endif /* _WIN32 */
} /* current_tv */
int main(int argc, char **argv)
{
int opt;
int num_parms;
char equiv_cmd[1024];
char *buff;
SOCKET sock;
socklen_t fromlen = sizeof(struct sockaddr_in);
int default_rcvbuf_sz, cur_size, sz;
int num_rcvd;
struct sockaddr_in in_sa;
struct sockaddr_in out_sa;
struct sockaddr_in src;
unsigned int wttl;
struct ip_mreq imr;
struct timeval first_tv;
struct timeval start_tv;
struct timeval end_tv;
struct timeval delta_tv;
struct timeval sum_tv;
struct timeval max_tv;
struct timeval min_tv;
char timestr1[65], timestr2[65];
float avg;
float cur;
float std;
int num_sent;
float perc_loss;
char *pause_slash;
#if defined(_WIN32)
unsigned long int iface_in;
#else
struct in_addr iface_in;
#endif /* _WIN32 */
prog_name = argv[0];
buff = malloc(65536 + 1); /* one extra for trailing null (if needed) */
if (buff == NULL) { fprintf(stderr, "malloc failed\n"); EXIT(1); }
#if defined(_WIN32)
{
WSADATA wsadata; int wsstatus;
if ((wsstatus = WSAStartup(MAKEWORD(2,2), &wsadata)) != 0) {
fprintf(stderr,"%s: WSA startup error - %d\n", argv[0], wsstatus);
EXIT(1);
}
}
#else
signal(SIGPIPE, SIG_IGN);
#endif /* _WIN32 */
/* get system default value for socket buffer size */
if((sock = socket(PF_INET,SOCK_DGRAM,0)) == INVALID_SOCKET) {
fprintf(stderr, "ERROR: "); perror("socket");
EXIT(1);
}
sz = sizeof(default_rcvbuf_sz);
if (getsockopt(sock,SOL_SOCKET,SO_RCVBUF,(char *)&default_rcvbuf_sz,
(socklen_t *)&sz) == SOCKET_ERROR) {
fprintf(stderr, "ERROR: "); perror("getsockopt - SO_RCVBUF");
EXIT(1);
}
CLOSESOCKET(sock);
/* default values for options */
o_initiator = 0;
o_output = NULL;
o_rcvbuf_size = 0x100000; /* 1MB */
o_Sndbuf_size = 65536;
o_samples = 65536;
o_verbose = 0;
/* default values for optional positional params */
ttlvar = 2;
bind_if = NULL;
while ((opt = tgetopt(argc, argv, "hio:r:S:s:v")) != EOF) {
switch (opt) {
case 'h':
help(NULL); exit(0);
break;
case 'i':
o_initiator = 1;
break;
case 'o':
if (strlen(toptarg) > 1000) {
fprintf(stderr, "ERROR: file name too long (%s)\n", toptarg);
EXIT(1);
}
o_output = fopen(toptarg, "w");
if (o_output == NULL) {
fprintf(stderr, "ERROR: "); perror("fopen");
EXIT(1);
}
break;
case 'r':
o_rcvbuf_size = atoi(toptarg);
if (o_rcvbuf_size == 0)
o_rcvbuf_size = default_rcvbuf_sz;
break;
case 'S':
o_Sndbuf_size = atoi(toptarg);
break;
case 's':
o_samples = atoi(toptarg);
break;
case 'v':
o_verbose = 1;
break;
default:
usage("unrecognized option");
EXIT(1);
break;
} /* switch */
} /* while opt */
num_parms = argc - toptind;
/* handle positional parameters */
if (num_parms == 2) {
groupaddr = inet_addr(argv[toptind]);
groupport = (unsigned short)atoi(argv[toptind+1]);
} else if (num_parms == 3) {
char c; int i;
groupaddr = inet_addr(argv[toptind]);
groupport = (unsigned short)atoi(argv[toptind+1]);
for (i = 0; (c = *(argv[toptind+2] + i)) != '\0'; ++i) {
if (c < '0' || c > '9') {
fprintf(stderr, "ERROR: third positional argument '%s' has non-numeric. Should be TTL.\n", argv[toptind+2]);
EXIT(1);
}
}
ttlvar = (unsigned char)atoi(argv[toptind+2]);
} else if (num_parms == 4) {
groupaddr = inet_addr(argv[toptind]);
groupport = (unsigned short)atoi(argv[toptind+1]);
ttlvar = (unsigned char)atoi(argv[toptind+2]);
bind_if = argv[toptind+3];
} else {
usage("need 2-4 positional parameters");
EXIT(1);
}
if((sock = socket(PF_INET,SOCK_DGRAM,0)) == INVALID_SOCKET) {
fprintf(stderr, "ERROR: "); perror("socket");
EXIT(1);
}
if(setsockopt(sock,SOL_SOCKET,SO_RCVBUF,(const char *)&o_rcvbuf_size,
sizeof(o_rcvbuf_size)) == SOCKET_ERROR) {
printf("WARNING: setsockopt - SO_RCVBUF\n"); fflush(stdout);
if (o_output) { fprintf(o_output, "WARNING: "); perror("setsockopt - SO_RCVBUF"); fflush(o_output); }
}
sz = sizeof(cur_size);
if (getsockopt(sock,SOL_SOCKET,SO_RCVBUF,(char *)&cur_size,
(socklen_t *)&sz) == SOCKET_ERROR) {
fprintf(stderr, "ERROR: "); perror("getsockopt - SO_RCVBUF");
EXIT(1);
}
if (cur_size < o_rcvbuf_size) {
printf("WARNING: tried to set SO_RCVBUF to %d, only got %d\n", o_rcvbuf_size, cur_size); fflush(stdout);
if (o_output) { fprintf(o_output, "WARNING: tried to set SO_RCVBUF to %d, only got %d\n", o_rcvbuf_size, cur_size); fflush(o_output); }
}
if(setsockopt(sock,SOL_SOCKET,SO_SNDBUF,(const char *)&o_Sndbuf_size,
sizeof(o_Sndbuf_size)) == SOCKET_ERROR) {
printf("WARNING: setsockopt - SO_SNDBUF\n"); fflush(stdout);
if (o_output) { fprintf(o_output, "WARNING: "); perror("setsockopt - SO_SNDBUF"); fflush(o_output); }
}
sz = sizeof(cur_size);
if (getsockopt(sock,SOL_SOCKET,SO_SNDBUF,(char *)&cur_size,
(socklen_t *)&sz) == SOCKET_ERROR) {
fprintf(stderr, "ERROR: "); perror("getsockopt - SO_SNDBUF");
EXIT(1);
}
if (cur_size < o_Sndbuf_size) {
printf("WARNING: tried to set SO_SNDBUF to %d, only got %d\n", o_Sndbuf_size, cur_size); fflush(stdout);
if (o_output) { fprintf(o_output, "WARNING: tried to set SO_SNDBUF to %d, only got %d\n", o_Sndbuf_size, cur_size); fflush(o_output); }
}
/* set TTL */
#if defined(_WIN32)
wttl = ttlvar;
if (setsockopt(sock,IPPROTO_IP,IP_MULTICAST_TTL,(char *)&wttl,
sizeof(wttl)) == SOCKET_ERROR) {
fprintf(stderr, "ERROR: "); perror("setsockopt - TTL");
EXIT(1);
}
#else
if (setsockopt(sock,IPPROTO_IP,IP_MULTICAST_TTL,(char *)&ttlvar,
sizeof(ttlvar)) == SOCKET_ERROR) {
fprintf(stderr, "ERROR: "); perror("setsockopt - TTL");
EXIT(1);
}
#endif /* _WIN32 */
memset((char *)&imr,0,sizeof(imr));
imr.imr_multiaddr.s_addr = groupaddr;
if (bind_if != NULL) {
imr.imr_interface.s_addr = inet_addr(bind_if); /* to add membership for receiving */
#if !defined(_WIN32)
memset((char *)&iface_in,0,sizeof(iface_in));
iface_in.s_addr = inet_addr(bind_if);
#else
iface_in = inet_addr(bind_if);
#endif
if (setsockopt(sock, IPPROTO_IP, IP_MULTICAST_IF, (const char*)&iface_in, sizeof(iface_in)) == SOCKET_ERROR) {
fprintf(stderr, "ERROR: "); perror("setsockopt - IP_MULTICAST_IF");
EXIT(1);
}
} else {
imr.imr_interface.s_addr = htonl(INADDR_ANY);
}
opt = 1;
if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (char *)&opt, sizeof(opt)) == SOCKET_ERROR) {
fprintf(stderr, "ERROR: "); perror("setsockopt SO_REUSEADDR");
EXIT(1);
}
memset((char *)&in_sa,0,sizeof(in_sa));
in_sa.sin_family = AF_INET;
in_sa.sin_addr.s_addr = groupaddr;
memcpy((char *)&out_sa, (char *)&in_sa, sizeof(out_sa));
if (o_initiator) {
in_sa.sin_port = htons(groupport);
out_sa.sin_port = htons(groupport+1);
} else {
in_sa.sin_port = htons(groupport+1);
out_sa.sin_port = htons(groupport);
}
if (bind(sock,(struct sockaddr *)&in_sa,sizeof(in_sa)) == SOCKET_ERROR) {
/* So OSes don't want you to bind to the m/c group. */
in_sa.sin_addr.s_addr = htonl(INADDR_ANY);
if (bind(sock,(struct sockaddr *)&in_sa, sizeof(in_sa)) == SOCKET_ERROR) {
fprintf(stderr, "ERROR: "); perror("bind");
EXIT(1);
}
}
if (setsockopt(sock,IPPROTO_IP,IP_ADD_MEMBERSHIP,
(char *)&imr,sizeof(struct ip_mreq)) == SOCKET_ERROR ) {
fprintf(stderr, "ERROR: "); perror("setsockopt - IP_ADD_MEMBERSHIP");
EXIT(1);
}
SLEEP_SEC(1); /* allow multicast join to complete */
if (o_initiator) {
start_tvs = (struct timeval *)malloc(o_samples * sizeof(struct timeval));
end_tvs = (struct timeval *)malloc(o_samples * sizeof(struct timeval));
memset((char *)start_tvs, 0, o_samples * sizeof(struct timeval));
memset((char *)end_tvs, 0, o_samples * sizeof(struct timeval));
/* The -20 allows 20 cycles to happen without measurements. This takes care of startup costs. */
for (num_rcvd = -20; num_rcvd < o_samples; ++num_rcvd) {
current_tv(&start_tv);
cur_size = sendto(sock, (char *)&start_tv, sizeof(struct timeval),
0, (struct sockaddr *)&out_sa, sizeof(out_sa));
if (cur_size == SOCKET_ERROR) { fprintf(stderr, "ERROR: "); perror("send"); EXIT(1); }
cur_size = recvfrom(sock, buff, 65536, 0, (struct sockaddr *)&src, &fromlen);
current_tv(&end_tv);
if (cur_size == SOCKET_ERROR) { fprintf(stderr, "ERROR: "); perror("recv"); EXIT(1); }
/* start and end timestamps taken, this part of the loop is non-time-critical */
if (num_rcvd >= 0) { /* check returned time */
if (num_rcvd == 0) first_tv = start_tv;
start_tvs[num_rcvd] = start_tv;
end_tvs[num_rcvd] = end_tv;
/* sanity check (make sure payload contains start_tv) */
if (cur_size != sizeof(struct timeval)) { fprintf(stderr, "ERROR: recvfrom rtn val %d != sizeof struct timeval %d\n", cur_size, sizeof(struct timeval)); EXIT(1); }
if (memcmp(buff, (char *)&start_tv, sizeof(struct timeval)) != 0) { fprintf(stderr, "ERROR: recvfrom buff != start_tv\n"); EXIT(1); }
}
} /* for num_rcvd */
/* Done with active ping-pong phase; calculate results */
/* Calculate sum, min, max */
sum_tv.tv_sec = 0; sum_tv.tv_usec = 0;
if (o_verbose) {
printf("timestamp RTT (in microseconds):\n"); fflush(stdout);
if (o_output) { fprintf(o_output, "RTT samples:\n"); fflush(o_output); }
}
for (num_rcvd = 0; num_rcvd < o_samples; ++num_rcvd) {
start_tv = start_tvs[num_rcvd];
end_tv = end_tvs[num_rcvd];
/* calc rtt */
delta_tv.tv_sec = end_tv.tv_sec - start_tv.tv_sec;
delta_tv.tv_usec = end_tv.tv_usec - start_tv.tv_usec;
normalize_tv(&delta_tv);
/* normalize timestamps to the start time of the test */
start_tv.tv_sec = start_tv.tv_sec - first_tv.tv_sec;
start_tv.tv_usec = start_tv.tv_usec - first_tv.tv_usec;
normalize_tv(&start_tv);
if (o_verbose) {
sprintf(timestr1, "%d.%06d", start_tv.tv_sec, start_tv.tv_usec);
if (delta_tv.tv_sec != 0) sprintf(timestr2, "%d%06d", delta_tv.tv_sec, delta_tv.tv_usec);
else sprintf(timestr2, "%d", delta_tv.tv_usec);
printf("%s %s\n", timestr1, timestr2); fflush(stdout);
if (o_output) { fprintf(o_output, "%s %s\n", timestr1, timestr2); fflush(o_output); }
}
sum_tv.tv_sec += delta_tv.tv_sec; sum_tv.tv_usec += delta_tv.tv_usec;
normalize_tv(&sum_tv);
if (num_rcvd == 0 || delta_tv.tv_sec < min_tv.tv_sec ||
(delta_tv.tv_sec == min_tv.tv_sec && delta_tv.tv_usec < min_tv.tv_usec)) {
min_tv = delta_tv;
}
if (num_rcvd == 0 || delta_tv.tv_sec > max_tv.tv_sec ||
(delta_tv.tv_sec == max_tv.tv_sec && delta_tv.tv_usec > max_tv.tv_usec)) {
max_tv = delta_tv;
}
}
/* Calc average and standard deviation in microseconds */
avg = (float)sum_tv.tv_sec; avg *= 1000000.0; avg += (float)sum_tv.tv_usec;
avg = avg / (float)o_samples;
std = 0.0;
for (num_rcvd = 0; num_rcvd < o_samples; ++num_rcvd) {
start_tv = start_tvs[num_rcvd];
end_tv = end_tvs[num_rcvd];
/* calc rtt */
delta_tv.tv_sec = end_tv.tv_sec - start_tv.tv_sec;
delta_tv.tv_usec = end_tv.tv_usec - start_tv.tv_usec;
normalize_tv(&delta_tv);
cur = (float)delta_tv.tv_sec; cur *= 1000000.0; cur += (float)delta_tv.tv_usec;
std += pow((cur - avg), 2);
}
std = pow((std / (float)o_samples), 0.5);
/* print final results */
if (min_tv.tv_sec != 0) sprintf(timestr1, "%d%06d", min_tv.tv_sec, min_tv.tv_usec);
else sprintf(timestr1, "%d", min_tv.tv_usec);
if (max_tv.tv_sec != 0) sprintf(timestr2, "%d%06d", max_tv.tv_sec, max_tv.tv_usec);
else sprintf(timestr2, "%d", max_tv.tv_usec);
printf("avg RTT %f us, std dev %f, min RTT %s us, max RTT %s us\n", avg, std, timestr1, timestr2); fflush(stdout);
if (o_output) { fprintf(o_output, "avg RTT %f us, std dev %f, min RTT %s us max RTT %s us\n", avg, std, timestr1, timestr2); fflush(o_output); }
} /* if initator */
else { /* not initiator, reflect incoming msg back on other port */
for (;;) {
cur_size = recvfrom(sock, buff, 65536, 0, (struct sockaddr *)&src, &fromlen);
if (cur_size == SOCKET_ERROR) { fprintf(stderr, "ERROR: "); perror("recv"); EXIT(1); }
cur_size = sendto(sock, buff, cur_size, 0, (struct sockaddr *)&out_sa,sizeof(out_sa));
if (cur_size == SOCKET_ERROR) { fprintf(stderr, "ERROR: "); perror("send"); EXIT(1); }
} /* for ;; */
}
CLOSESOCKET(sock);
exit(0);
} /* main */
/* tgetopt.c - (renamed from BSD getopt) - this source was adapted from BSD
*
* Copyright (c) 1993, 1994
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#ifdef _BSD
extern char *__progname;
#else
#define __progname "tgetopt"
#endif
int topterr = 1, /* if error message should be printed */
toptind = 1, /* index into parent argv vector */
toptopt, /* character checked for validity */
toptreset; /* reset getopt */
char *toptarg; /* argument associated with option */
#define BADCH (int)'?'
#define BADARG (int)':'
#define EMSG ""
/*
* tgetopt --
* Parse argc/argv argument vector.
*/
int
tgetopt(nargc, nargv, ostr)
int nargc;
char * const *nargv;
const char *ostr;
{
static char *place = EMSG; /* option letter processing */
char *oli; /* option letter list index */
/* really reset */
if (toptreset) {
topterr = 1;
toptind = 1;
toptopt = 0;
toptreset = 0;
toptarg = NULL;
place = EMSG;
}
if (!*place) { /* update scanning pointer */
if (toptind >= nargc || *(place = nargv[toptind]) != '-') {
place = EMSG;
return (-1);
}
if (place[1] && *++place == '-') { /* found "--" */
++toptind;
place = EMSG;
return (-1);
}
} /* option letter okay? */
if ((toptopt = (int)*place++) == (int)':' ||
!(oli = strchr(ostr, toptopt))) {
/*
* if the user didn't specify '-' as an option,
* assume it means -1.
*/
if (toptopt == (int)'-')
return (-1);
if (!*place)
++toptind;
if (topterr && *ostr != ':')
(void)fprintf(stderr,
"%s: illegal option -- %c\n", __progname, toptopt);
return (BADCH);
}
if (*++oli != ':') { /* don't need argument */
toptarg = NULL;
if (!*place)
++toptind;
}
else { /* need an argument */
if (*place) /* no white space */
toptarg = place;
else if (nargc <= ++toptind) { /* no arg */
place = EMSG;
if (*ostr == ':')
return (BADARG);
if (topterr)
(void)fprintf(stderr,
"%s: option requires an argument -- %c\n",
__progname, toptopt);
return (BADCH);
}
else /* white space */
toptarg = nargv[toptind];
place = EMSG;
++toptind;
}
return (toptopt); /* dump back option letter */
} /* tgetopt */