Skip to content

Commit 48b9bac

Browse files
committed
When decoding a third party traffic packet, decode the payload.
1 parent e272ff8 commit 48b9bac

File tree

2 files changed

+25
-31
lines changed

2 files changed

+25
-31
lines changed

src/decode_aprs.c

+23-31
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ static void aprs_morse_code (decode_aprs_t *A, char *, int);
116116
static void aprs_positionless_weather_report (decode_aprs_t *A, unsigned char *, int);
117117
static void weather_data (decode_aprs_t *A, char *wdata, int wind_prefix);
118118
static void aprs_ultimeter (decode_aprs_t *A, char *, int);
119-
static void third_party_header (decode_aprs_t *A, char *, int);
120119
static void decode_position (decode_aprs_t *A, position_t *ppos);
121120
static void decode_compressed_position (decode_aprs_t *A, compressed_position_t *ppos);
122121
static double get_latitude_8 (char *p, int quiet);
@@ -197,7 +196,22 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet)
197196
A->g_footprint_lon = G_UNKNOWN;
198197
A->g_footprint_radius = G_UNKNOWN;
199198

199+
// If third-party header, try to decode just the payload.
200200

201+
if (*pinfo == '}') {
202+
203+
packet_t pp_payload = ax25_from_text ((char*)pinfo+1, 0);
204+
if (pp_payload != NULL) {
205+
decode_aprs (A, pp_payload, quiet);
206+
ax25_delete (pp_payload);
207+
return;
208+
}
209+
else {
210+
strlcpy (A->g_msg_type, "Third Party Header: Unable to parse payload.", sizeof(A->g_msg_type));
211+
ax25_get_addr_with_ssid (pp, AX25_SOURCE, A->g_src);
212+
ax25_get_addr_with_ssid (pp, AX25_DESTINATION, dest);
213+
}
214+
}
201215

202216
/*
203217
* Extract source and destination including the SSID.
@@ -362,11 +376,9 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet)
362376
aprs_morse_code (A, (char*)pinfo, info_len);
363377
break;
364378

365-
case '}': /* third party header */
366-
367-
third_party_header (A, (char*)pinfo, info_len);
368-
break;
379+
//case '}': /* third party header */
369380

381+
// was already caught earlier.
370382

371383
//case '\r': /* CR or LF? */
372384
//case '\n':
@@ -380,7 +392,12 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet)
380392

381393

382394
/*
383-
* Look in other locations if not found in information field.
395+
* Priority order for determining the symbol is:
396+
* - Information part, where appropriate. Already done above.
397+
* - Destination field starting with GPS, SPC, or SYM.
398+
* - Source SSID - Confusing to most people. Even I forgot about it when
399+
* someone questioned where the symbol came from. It's in the APRS
400+
* protocol spec, end of Chapter 20.
384401
*/
385402

386403
if (A->g_symbol_table == ' ' || A->g_symbol_code == ' ') {
@@ -2934,31 +2951,6 @@ static void aprs_ultimeter (decode_aprs_t *A, char *info, int ilen)
29342951
} /* end aprs_ultimeter */
29352952

29362953

2937-
/*------------------------------------------------------------------
2938-
*
2939-
* Function: third_party_header
2940-
*
2941-
* Purpose: Decode packet from a third party network.
2942-
*
2943-
* Inputs: info - Pointer to Information field.
2944-
* ilen - Information field length.
2945-
*
2946-
* Outputs: A->g_comment
2947-
*
2948-
* Description:
2949-
*
2950-
*------------------------------------------------------------------*/
2951-
2952-
static void third_party_header (decode_aprs_t *A, char *info, int ilen)
2953-
{
2954-
2955-
strlcpy (A->g_msg_type, "Third Party Header", sizeof(A->g_msg_type));
2956-
2957-
/* more later? */
2958-
2959-
} /* end third_party_header */
2960-
2961-
29622954

29632955
/*------------------------------------------------------------------
29642956
*

src/symbols.c

+2
Original file line numberDiff line numberDiff line change
@@ -659,6 +659,8 @@ void symbols_from_dest_or_src (char dti, char *src, char *dest, char *symtab, ch
659659

660660
/*
661661
* When all else fails, use source SSID.
662+
* This is totally non-obvious and confusing, but it is in the APRS protocol spec.
663+
* Chapter 20, "Symbol in the Source Address SSID"
662664
*/
663665

664666
p = strchr (src, '-');

0 commit comments

Comments
 (0)