1
1
//
2
2
// This file is part of Dire Wolf, an amateur radio packet TNC.
3
3
//
4
- // Copyright (C) 2013 John Langner, WB2OSZ
4
+ // Copyright (C) 2013, 2015 John Langner, WB2OSZ
5
5
//
6
6
// This program is free software: you can redistribute it and/or modify
7
7
// it under the terms of the GNU General Public License as published by
28
28
* Description: Establish connection with multiple servers and
29
29
* compare results side by side.
30
30
*
31
- * Usage: aclients 8000=AGWPE 8002=DireWolf COM1=D710A
31
+ * Usage: aclients port1=name1 port2=name2 ...
32
+ *
33
+ * Example: aclients 8000=AGWPE 192.168.1.64:8002=DireWolf COM1=D710A
32
34
*
33
35
* This will connect to multiple physical or virtual
34
36
* TNCs, read packets from them, and display results.
35
37
*
38
+ * Each port can have the following forms:
39
+ *
40
+ * * host-name:tcp-port
41
+ * * ip-addr:tcp-port
42
+ * * tcp-port
43
+ * * serial port name (e.g. COM1, /dev/ttyS0)
44
+ *
36
45
*---------------------------------------------------------------*/
37
46
38
47
39
48
40
49
/*
41
50
* Native Windows: Use the Winsock interface.
42
51
* Linux: Use the BSD socket interface.
43
- * Cygwin: Can use either one.
44
52
*/
45
53
46
54
@@ -156,14 +164,7 @@ static char * ia_to_text (int Family, void * pAddr, char * pStringBuf, size_t S
156
164
* Purpose: Start up multiple client threads listening to different
157
165
* TNCs. Print packets. Tally up statistics.
158
166
*
159
- * Usage: aclients 8000=AGWPE 8002=DireWolf COM1=D710A
160
- *
161
- * Each command line argument is TCP port number or a
162
- * serial port name. Follow by = and a text description
163
- * of what is connected.
164
- *
165
- * For now, everything is assumed to be on localhost.
166
- * Maybe someday we might recognize host:port=description.
167
+ * Usage: Described above.
167
168
*
168
169
*---------------------------------------------------------------*/
169
170
@@ -173,9 +174,17 @@ static char * ia_to_text (int Family, void * pAddr, char * pStringBuf, size_t S
173
174
174
175
static int num_clients ;
175
176
176
- static char hostname [MAX_CLIENTS ][50 ];
177
- static char port [MAX_CLIENTS ][30 ];
178
- static char description [MAX_CLIENTS ][50 ];
177
+ static char hostname [MAX_CLIENTS ][50 ]; /* DNS host name or IPv4 address. */
178
+ /* Some of the code is there for IPv6 but */
179
+ /* needs more work. */
180
+ /* Defaults to "localhost" if not specified. */
181
+
182
+ static char port [MAX_CLIENTS ][30 ]; /* If it begins with a digit, it is considered */
183
+ /* a TCP port number at the hostname. */
184
+ /* Otherwise, we treat it as a serial port name. */
185
+
186
+ static char description [MAX_CLIENTS ][50 ]; /* Name used in the output. */
187
+
179
188
180
189
#if __WIN32__
181
190
static HANDLE client_th [MAX_CLIENTS ];
@@ -222,7 +231,9 @@ int main (int argc, char *argv[])
222
231
for (j = 0 ; j < num_clients ; j ++ ) {
223
232
char stemp [100 ];
224
233
char * p ;
225
-
234
+
235
+ /* Each command line argument should be of the form "port=description." */
236
+
226
237
strlcpy (stemp , argv [j + 1 ], sizeof (stemp ));
227
238
p = strtok (stemp , "=" );
228
239
if (p == NULL ) {
@@ -237,8 +248,24 @@ int main (int argc, char *argv[])
237
248
exit (1 );
238
249
}
239
250
strlcpy (description [j ], p , sizeof (description [j ]));
251
+
252
+ /* If the port contains ":" split it into hostname (or addr) and port number. */
253
+ /* Haven't thought about IPv6 yet. */
254
+
255
+ strlcpy (stemp , port [j ], sizeof (stemp ));
256
+
257
+ char * h ;
258
+
259
+ h = strtok (stemp , ":" );
260
+ if (h != NULL ) {
261
+ p = strtok (NULL , ":" );
262
+ if (p != NULL ) {
263
+ strlcpy (hostname [j ], h , sizeof (hostname [j ]));
264
+ strlcpy (port [j ], p , sizeof (port [j ]));
265
+ }
266
+ }
240
267
}
241
-
268
+
242
269
//printf ("_WIN32_WINNT = %04x\n", _WIN32_WINNT);
243
270
//for (j=0; j<num_clients; j++) {
244
271
// printf ("%s,%s,%s\n", hostname[j], port[j], description[j]);
@@ -253,6 +280,10 @@ int main (int argc, char *argv[])
253
280
254
281
255
282
for (j = 0 ; j < num_clients ; j ++ ) {
283
+
284
+ /* If port begins with digit, consider it to be TCP. */
285
+ /* Otherwise, treat as serial port name. */
286
+
256
287
#if __WIN32__
257
288
if (isdigit (port [j ][0 ])) {
258
289
client_th [j ] = (HANDLE )_beginthreadex (NULL , 0 , client_thread_net , (void * )j , 0 , NULL );
0 commit comments