@@ -1298,7 +1298,7 @@ static int filt_s (pfstate_t *pf)
1298
1298
*
1299
1299
*
1300
1300
* "time" is maximum number of minutes since message addressee was last heard.
1301
- * This is required.
1301
+ * This is required. APRS-IS uses 3 hours so that would be a good value here.
1302
1302
*
1303
1303
* "hops" is maximum number of digpeater hops. (i.e. 0 for heard directly).
1304
1304
* If hops is not specified, the maximum transmit digipeater hop count,
@@ -1309,8 +1309,8 @@ static int filt_s (pfstate_t *pf)
1309
1309
* Examples:
1310
1310
* i/60/0 Heard in past 60 minutes directly.
1311
1311
* i/45 Past 45 minutes, default max digi hops.
1312
- * i/30 /3 Default time, max 3 digi hops.
1313
- * i/30 /8/42.6/-71.3/50.
1312
+ * i/180 /3 Default time (3 hours) , max 3 digi hops.
1313
+ * i/180 /8/42.6/-71.3/50.
1314
1314
*
1315
1315
*
1316
1316
* It only makes sense to use this for the IS>RF direction.
@@ -1321,6 +1321,10 @@ static int filt_s (pfstate_t *pf)
1321
1321
* position report from the sender of the "message."
1322
1322
* That is done somewhere else. We are not concerned with it here.
1323
1323
*
1324
+ * IMHO, the rules here are too restrictive.
1325
+ *
1326
+ * FIXME -explain
1327
+ *
1324
1328
*------------------------------------------------------------------------------*/
1325
1329
1326
1330
static int filt_i (pfstate_t * pf )
@@ -1329,7 +1333,15 @@ static int filt_i (pfstate_t *pf)
1329
1333
char * cp ;
1330
1334
char sep [2 ];
1331
1335
char * v ;
1332
- int heardtime = 30 ;
1336
+
1337
+ // http://lists.tapr.org/pipermail/aprssig_lists.tapr.org/2020-July/048656.html
1338
+ // Default of 3 hours should be good.
1339
+ // One might question why to have a time limit at all. Messages are very rare
1340
+ // the the APRS-IS wouldn't be sending it to me unless the addressee was in the
1341
+ // vicinity recently.
1342
+ // TODO: Should produce a warning if a user specified filter does not include "i".
1343
+
1344
+ int heardtime = 180 ; // 3 hours * 60 min/hr = 180 minutes
1333
1345
#if PFTEST
1334
1346
int maxhops = 2 ;
1335
1347
#else
@@ -1466,7 +1478,7 @@ static int filt_i (pfstate_t *pf)
1466
1478
*
1467
1479
* Maybe we could compromise here and say the sender must have been heard directly.
1468
1480
* It sent the message currently being processed so we must have heard it very recently, i.e. in
1469
- * the past minute, rather than the usual 30 or 60 minutes for the addressee.
1481
+ * the past minute, rather than the usual 180 minutes for the addressee.
1470
1482
*/
1471
1483
1472
1484
was_heard = mheard_was_recently_nearby ("source" , src , 1 , 0 , G_UNKNOWN , G_UNKNOWN , G_UNKNOWN );
0 commit comments