@@ -976,8 +976,13 @@ void server_send_monitored (int chan, packet_t pp, int own_xmit)
976
976
// Format addresses in AGWPR monitoring format such as:
977
977
// 1:Fm ZL4FOX-8 To Q7P2U2 Via WIDE3-3
978
978
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
+
981
986
982
987
static void mon_addrs (int chan , packet_t pp , char * result , int result_size )
983
988
{
@@ -1000,9 +1005,14 @@ static void mon_addrs (int chan, packet_t pp, char *result, int result_size)
1000
1005
}
1001
1006
ax25_get_addr_with_ssid (pp , AX25_REPEATER_1 + j , digiaddr );
1002
1007
strlcat (via , digiaddr , sizeof (via ));
1008
+ #if 0 // Mark each used with * as seen in UZ7HO SoundModem.
1003
1009
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
1004
1013
strlcat (via , "*" , sizeof (via ));
1005
1014
}
1015
+
1006
1016
}
1007
1017
snprintf (result , result_size , " %d:Fm %s To %s Via %s " ,
1008
1018
chan + 1 , src , dst , via );
0 commit comments