|
1 | 1 | //
|
2 | 2 | // This file is part of Dire Wolf, an amateur radio packet TNC.
|
3 | 3 | //
|
4 |
| -// Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 John Langner, WB2OSZ |
| 4 | +// Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2021 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
|
@@ -852,7 +852,14 @@ void config_init (char *fname, struct audio_s *p_audio_config,
|
852 | 852 |
|
853 | 853 | memset (p_misc_config, 0, sizeof(struct misc_config_s));
|
854 | 854 | p_misc_config->agwpe_port = DEFAULT_AGWPE_PORT;
|
855 |
| - p_misc_config->kiss_port = DEFAULT_KISS_PORT; |
| 855 | + |
| 856 | + for (int i=0; i<MAX_KISS_TCP_PORTS; i++) { |
| 857 | + p_misc_config->kiss_port[i] = 0; // entry not used. |
| 858 | + p_misc_config->kiss_chan[i] = -1; |
| 859 | + } |
| 860 | + p_misc_config->kiss_port[0] = DEFAULT_KISS_PORT; |
| 861 | + p_misc_config->kiss_chan[0] = -1; // all channels. |
| 862 | + |
856 | 863 | p_misc_config->enable_kiss_pt = 0; /* -p option */
|
857 | 864 | p_misc_config->kiss_copy = 0;
|
858 | 865 |
|
@@ -4477,27 +4484,89 @@ void config_init (char *fname, struct audio_s *p_audio_config,
|
4477 | 4484 | }
|
4478 | 4485 |
|
4479 | 4486 | /*
|
4480 |
| - * KISSPORT - Port number for KISS over IP. |
| 4487 | + * KISSPORT port [ chan ] - Port number for KISS over IP. |
4481 | 4488 | */
|
4482 | 4489 |
|
| 4490 | + // Previously we allowed only a single TCP port for KISS. |
| 4491 | + // An increasing number of people want to run multiple radios. |
| 4492 | + // Unfortunately, most applications don't know how to deal with multi-radio TNCs. |
| 4493 | + // They ignore the channel on receive and always transmit to channel 0. |
| 4494 | + // Running multiple instances of direwolf is a work-around but this leads to |
| 4495 | + // more complex configuration and we lose the cross-channel digipeating capability. |
| 4496 | + // In release 1.7 we add a new feature to assign a single radio channel to a TCP port. |
| 4497 | + // e.g. |
| 4498 | + // KISSPORT 8001 # default, all channels. Radio channel = KISS channel. |
| 4499 | + // |
| 4500 | + // KISSPORT 7000 0 # Only radio channel 0 for receive. |
| 4501 | + // # Transmit to radio channel 0, ignoring KISS channel. |
| 4502 | + // |
| 4503 | + // KISSPORT 7001 1 # Only radio channel 1 for receive. KISS channel set to 0. |
| 4504 | + // # Transmit to radio channel 1, ignoring KISS channel. |
| 4505 | + |
| 4506 | +// FIXME |
4483 | 4507 | else if (strcasecmp(t, "KISSPORT") == 0) {
|
4484 | 4508 | int n;
|
| 4509 | + int tcp_port = 0; |
| 4510 | + int chan = -1; // optional. default to all if not specified. |
4485 | 4511 | t = split(NULL,0);
|
4486 | 4512 | if (t == NULL) {
|
4487 | 4513 | text_color_set(DW_COLOR_ERROR);
|
4488 |
| - dw_printf ("Line %d: Missing port number for KISSPORT command.\n", line); |
| 4514 | + dw_printf ("Line %d: Missing TCP port number for KISSPORT command.\n", line); |
4489 | 4515 | continue;
|
4490 | 4516 | }
|
4491 | 4517 | n = atoi(t);
|
4492 | 4518 | if ((n >= MIN_IP_PORT_NUMBER && n <= MAX_IP_PORT_NUMBER) || n == 0) {
|
4493 |
| - p_misc_config->kiss_port = n; |
| 4519 | + tcp_port = n; |
4494 | 4520 | }
|
4495 | 4521 | else {
|
4496 |
| - p_misc_config->kiss_port = DEFAULT_KISS_PORT; |
4497 | 4522 | text_color_set(DW_COLOR_ERROR);
|
4498 |
| - dw_printf ("Line %d: Invalid port number for KISS TCPIP Socket Interface. Using %d.\n", |
4499 |
| - line, p_misc_config->kiss_port); |
| 4523 | + dw_printf ("Line %d: Invalid TCP port number for KISS TCPIP Socket Interface.\n", line); |
| 4524 | + dw_printf ("Use something in the range of %d to %d.\n", MIN_IP_PORT_NUMBER, MAX_IP_PORT_NUMBER); |
| 4525 | + continue; |
4500 | 4526 | }
|
| 4527 | + |
| 4528 | + t = split(NULL,0); |
| 4529 | + if (t != NULL) { |
| 4530 | + chan = atoi(t); |
| 4531 | + if (chan < 0 || chan >= MAX_CHANS) { |
| 4532 | + text_color_set(DW_COLOR_ERROR); |
| 4533 | + dw_printf ("Line %d: Invalid channel %d for KISSPORT command. Must be in range 0 thru %d.\n", line, chan, MAX_CHANS-1); |
| 4534 | + continue; |
| 4535 | + } |
| 4536 | + } |
| 4537 | + |
| 4538 | + // "KISSPORT 0" is used to remove the default entry. |
| 4539 | + |
| 4540 | + if (tcp_port == 0) { |
| 4541 | + p_misc_config->kiss_port[0] = 0; // Should all be wiped out? |
| 4542 | + } |
| 4543 | + else { |
| 4544 | + |
| 4545 | + // Try to find an empty slot. |
| 4546 | + // A duplicate TCP port number will overwrite the previous value. |
| 4547 | + |
| 4548 | + int slot = -1; |
| 4549 | + for (int i = 0; i < MAX_KISS_TCP_PORTS && slot == -1; i++) { |
| 4550 | + if (p_misc_config->kiss_port[i] == tcp_port) { |
| 4551 | + slot = i; |
| 4552 | + if ( ! (slot == 0 && tcp_port == DEFAULT_KISS_PORT)) { |
| 4553 | + text_color_set(DW_COLOR_ERROR); |
| 4554 | + dw_printf ("Line %d: Warning: Duplicate TCP port %d will overwrite previous value.\n", line, tcp_port); |
| 4555 | + } |
| 4556 | + } |
| 4557 | + else if (p_misc_config->kiss_port[i] == 0) { |
| 4558 | + slot = i; |
| 4559 | + } |
| 4560 | + } |
| 4561 | + if (slot >= 0) { |
| 4562 | + p_misc_config->kiss_port[slot] = tcp_port; |
| 4563 | + p_misc_config->kiss_chan[slot] = chan; |
| 4564 | + } |
| 4565 | + else { |
| 4566 | + text_color_set(DW_COLOR_ERROR); |
| 4567 | + dw_printf ("Line %d: Too many KISSPORT commands.\n", line); |
| 4568 | + } |
| 4569 | + } |
4501 | 4570 | }
|
4502 | 4571 |
|
4503 | 4572 | /*
|
|
0 commit comments