@@ -116,7 +116,6 @@ static void aprs_morse_code (decode_aprs_t *A, char *, int);
116
116
static void aprs_positionless_weather_report (decode_aprs_t * A , unsigned char * , int );
117
117
static void weather_data (decode_aprs_t * A , char * wdata , int wind_prefix );
118
118
static void aprs_ultimeter (decode_aprs_t * A , char * , int );
119
- static void third_party_header (decode_aprs_t * A , char * , int );
120
119
static void decode_position (decode_aprs_t * A , position_t * ppos );
121
120
static void decode_compressed_position (decode_aprs_t * A , compressed_position_t * ppos );
122
121
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)
197
196
A -> g_footprint_lon = G_UNKNOWN ;
198
197
A -> g_footprint_radius = G_UNKNOWN ;
199
198
199
+ // If third-party header, try to decode just the payload.
200
200
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
+ }
201
215
202
216
/*
203
217
* Extract source and destination including the SSID.
@@ -362,11 +376,9 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet)
362
376
aprs_morse_code (A , (char * )pinfo , info_len );
363
377
break ;
364
378
365
- case '}' : /* third party header */
366
-
367
- third_party_header (A , (char * )pinfo , info_len );
368
- break ;
379
+ //case '}': /* third party header */
369
380
381
+ // was already caught earlier.
370
382
371
383
//case '\r': /* CR or LF? */
372
384
//case '\n':
@@ -380,7 +392,12 @@ void decode_aprs (decode_aprs_t *A, packet_t pp, int quiet)
380
392
381
393
382
394
/*
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.
384
401
*/
385
402
386
403
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)
2934
2951
} /* end aprs_ultimeter */
2935
2952
2936
2953
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
-
2962
2954
2963
2955
/*------------------------------------------------------------------
2964
2956
*
0 commit comments