|
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, 2017, 2022, 2023 John Langner, WB2OSZ |
| 4 | +// Copyright (C) 2011, 2012, 2013, 2014, 2015, 2017, 2022, 2023, 2024 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
|
@@ -206,9 +206,36 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet, char *third_party_sr
|
206 | 206 | A->g_footprint_lon = G_UNKNOWN;
|
207 | 207 | A->g_footprint_radius = G_UNKNOWN;
|
208 | 208 |
|
209 |
| -// TODO: Complain if obsolete WIDE or RELAY is found in via path. |
210 | 209 |
|
211 |
| -// TODO: complain if unused WIDEn is see in path. |
| 210 | +// Check for RFONLY or NOGATE in the destination field. |
| 211 | +// Actual cases observed. |
| 212 | +// W1KU-4>APDW15,W1IMD,WIDE1,KQ1L-8,N3LLO-3,WIDE2*:}EB1EBT-9>NOGATE,TCPIP,W1KU-4*::DF1AKR-9 :73{4 |
| 213 | +// NE1CU-10>RFONLY,KB1AEV-15,N3LLO-3,WIDE2*:}W1HS-11>APMI06,TCPIP,NE1CU-10*:T#050,190,039,008,095,20403,00000000 |
| 214 | + |
| 215 | + char atemp[AX25_MAX_ADDR_LEN]; |
| 216 | + ax25_get_addr_no_ssid (pp, AX25_DESTINATION, atemp); |
| 217 | + if ( ! quiet) { |
| 218 | + if (strcmp("RFONLY", atemp) == 0 || strcmp("NOGATE", atemp) == 0) { |
| 219 | + text_color_set(DW_COLOR_ERROR); |
| 220 | + dw_printf("RFONLY and NOGATE must not appear in the destination address field.\n"); |
| 221 | + dw_printf("They should appear only at the end of the digi via path.\n"); |
| 222 | + } |
| 223 | + } |
| 224 | + |
| 225 | +// Complain if obsolete WIDE or RELAY is found in via path. |
| 226 | + |
| 227 | + for (int i = 0; i < ax25_get_num_repeaters(pp); i++) { |
| 228 | + ax25_get_addr_no_ssid (pp, AX25_REPEATER_1 + i, atemp); |
| 229 | + if ( ! quiet) { |
| 230 | + if (strcmp("RELAY", atemp) == 0 || strcmp("WIDE", atemp) == 0 || strcmp("TRACE", atemp) == 0) { |
| 231 | + text_color_set(DW_COLOR_ERROR); |
| 232 | + dw_printf("RELAY, TRACE, and WIDE (not WIDEn) are obsolete.\n"); |
| 233 | + dw_printf("Modern digipeaters will not recoginize these.\n"); |
| 234 | + } |
| 235 | + } |
| 236 | + } |
| 237 | + |
| 238 | +// TODO: complain if unused WIDEn-0 is see in path. |
212 | 239 | // There is a report of UIDIGI decrementing ssid 1 to 0 and not marking it used.
|
213 | 240 | // http://lists.tapr.org/pipermail/aprssig_lists.tapr.org/2022-May/049397.html
|
214 | 241 |
|
|
0 commit comments