Skip to content

Commit cae4680

Browse files
committed
Check for RELAY,WIDE,TRACE, Check for RFONLY,NOGATE in wrong place.
1 parent fbd9b25 commit cae4680

File tree

1 file changed

+30
-3
lines changed

1 file changed

+30
-3
lines changed

src/decode_aprs.c

+30-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// This file is part of Dire Wolf, an amateur radio packet TNC.
33
//
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
55
//
66
// This program is free software: you can redistribute it and/or modify
77
// 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
206206
A->g_footprint_lon = G_UNKNOWN;
207207
A->g_footprint_radius = G_UNKNOWN;
208208

209-
// TODO: Complain if obsolete WIDE or RELAY is found in via path.
210209

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.
212239
// There is a report of UIDIGI decrementing ssid 1 to 0 and not marking it used.
213240
// http://lists.tapr.org/pipermail/aprssig_lists.tapr.org/2022-May/049397.html
214241

0 commit comments

Comments
 (0)