Skip to content

Commit 5d7b10a

Browse files
committed
Mark only heard digi, not all used.
1 parent c69252f commit 5d7b10a

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/server.c

+12-2
Original file line numberDiff line numberDiff line change
@@ -976,8 +976,13 @@ void server_send_monitored (int chan, packet_t pp, int own_xmit)
976976
// Format addresses in AGWPR monitoring format such as:
977977
// 1:Fm ZL4FOX-8 To Q7P2U2 Via WIDE3-3
978978

979-
// Issue 530 pointed out that in this situation it is customary to put * after each used address,
980-
// not just the last used as in the TNC-2 monitoring format.
979+
// There is some disagreement, in the user community, about whether to:
980+
// * follow the lead of UZ7HO SoundModem and mark all of the used addresses, or
981+
// * follow the TNC-2 Monitoring format and mark only the last used, i.e. the station heard.
982+
983+
// I think my opinion (which could change) is that we should try to be consistent with TNC-2 format
984+
// rather than continuing to propagate historical inconsistencies.
985+
981986

982987
static void mon_addrs (int chan, packet_t pp, char *result, int result_size)
983988
{
@@ -1000,9 +1005,14 @@ static void mon_addrs (int chan, packet_t pp, char *result, int result_size)
10001005
}
10011006
ax25_get_addr_with_ssid (pp, AX25_REPEATER_1 + j, digiaddr);
10021007
strlcat (via, digiaddr, sizeof(via));
1008+
#if 0 // Mark each used with * as seen in UZ7HO SoundModem.
10031009
if (ax25_get_h(pp, AX25_REPEATER_1 + j)) {
1010+
#else // Mark only last used (i.e. the heard station) with * as in TNC-2 Monitoring format.
1011+
if (AX25_REPEATER_1 + j == ax25_get_heard(pp)) {
1012+
#endif
10041013
strlcat (via, "*", sizeof(via));
10051014
}
1015+
10061016
}
10071017
snprintf (result, result_size, " %d:Fm %s To %s Via %s ",
10081018
chan+1, src, dst, via);

0 commit comments

Comments
 (0)