@@ -1554,7 +1554,8 @@ static void aprs_message (decode_aprs_t *A, unsigned char *info, int ilen, int q
1554
1554
if (p -> colon != ':' ) {
1555
1555
if (! quiet ) {
1556
1556
text_color_set (DW_COLOR_ERROR );
1557
- dw_printf ("APRS Message must begin with : 9 character addressee :\n" );
1557
+ dw_printf ("APRS Message must begin with ':' 9 character addressee ':'\n" );
1558
+ dw_printf ("Spaces must be added to shorter addressee to make 9 characters.\n" );
1558
1559
}
1559
1560
A -> g_message_subtype = message_subtype_invalid ;
1560
1561
return ;
@@ -1569,6 +1570,38 @@ static void aprs_message (decode_aprs_t *A, unsigned char *info, int ilen, int q
1569
1570
addressee [i -- ] = '\0' ;
1570
1571
}
1571
1572
1573
+ // Anytone AT-D878UV 2 plus would pad out station name to 6 characters
1574
+ // before appending the SSID. e.g. "AE7MK -5 "
1575
+
1576
+ // Test cases. First is valid. Others should produce errors:
1577
+ //
1578
+ // cbeacon sendto=r0 delay=0:10 info=":AE7MK-5 :test0"
1579
+ // cbeacon sendto=r0 delay=0:15 info=":AE7MK-5:test1"
1580
+ // cbeacon sendto=r0 delay=0:20 info=":AE7MK -5 :test2"
1581
+ // cbeacon sendto=r0 delay=0:25 info=":AE7 -5 :test3"
1582
+
1583
+ static regex_t bad_addressee_re ; /* Probably bad addressee. */
1584
+ static int first_time = 1 ;
1585
+
1586
+ if (first_time ) {
1587
+ char emsg [100 ];
1588
+ int e = regcomp (& bad_addressee_re , "[A-Z0-9]+ +-[0-9]" , REG_EXTENDED );
1589
+ if (e ) {
1590
+ regerror (e , & bad_addressee_re , emsg , sizeof (emsg ));
1591
+ dw_printf ("%s:%d: %s\n" , __FILE__ , __LINE__ , emsg );
1592
+ }
1593
+ first_time = 0 ;
1594
+ }
1595
+
1596
+ #define MAXMATCH_AT 2
1597
+ regmatch_t match [MAXMATCH_AT ];
1598
+
1599
+ if (regexec (& bad_addressee_re , addressee , MAXMATCH_AT , match , 0 ) == 0 ) {
1600
+ text_color_set (DW_COLOR_ERROR );
1601
+ dw_printf ("Malformed addressee with space between station name and SSID.\n" );
1602
+ dw_printf ("Please tell message sender this is invalid.\n" );
1603
+ }
1604
+
1572
1605
strlcpy (A -> g_addressee , addressee , sizeof (A -> g_addressee ));
1573
1606
1574
1607
@@ -4135,6 +4168,7 @@ static void process_comment (decode_aprs_t *A, char *pstart, int clen)
4135
4168
4136
4169
static regex_t base91_tel_re ; /* Base 91 compressed telemetry data. */
4137
4170
4171
+
4138
4172
int e ;
4139
4173
char emsg [100 ];
4140
4174
#define MAXMATCH 4
0 commit comments