Skip to content

Commit c0fc5f0

Browse files
committed
Increase default for time since message addressee heard.
1 parent adae04b commit c0fc5f0

File tree

1 file changed

+17
-5
lines changed

1 file changed

+17
-5
lines changed

src/pfilter.c

+17-5
Original file line numberDiff line numberDiff line change
@@ -1298,7 +1298,7 @@ static int filt_s (pfstate_t *pf)
12981298
*
12991299
*
13001300
* "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.
13021302
*
13031303
* "hops" is maximum number of digpeater hops. (i.e. 0 for heard directly).
13041304
* If hops is not specified, the maximum transmit digipeater hop count,
@@ -1309,8 +1309,8 @@ static int filt_s (pfstate_t *pf)
13091309
* Examples:
13101310
* i/60/0 Heard in past 60 minutes directly.
13111311
* 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.
13141314
*
13151315
*
13161316
* It only makes sense to use this for the IS>RF direction.
@@ -1321,6 +1321,10 @@ static int filt_s (pfstate_t *pf)
13211321
* position report from the sender of the "message."
13221322
* That is done somewhere else. We are not concerned with it here.
13231323
*
1324+
* IMHO, the rules here are too restrictive.
1325+
*
1326+
* FIXME -explain
1327+
*
13241328
*------------------------------------------------------------------------------*/
13251329

13261330
static int filt_i (pfstate_t *pf)
@@ -1329,7 +1333,15 @@ static int filt_i (pfstate_t *pf)
13291333
char *cp;
13301334
char sep[2];
13311335
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
13331345
#if PFTEST
13341346
int maxhops = 2;
13351347
#else
@@ -1466,7 +1478,7 @@ static int filt_i (pfstate_t *pf)
14661478
*
14671479
* Maybe we could compromise here and say the sender must have been heard directly.
14681480
* 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.
14701482
*/
14711483

14721484
was_heard = mheard_was_recently_nearby ("source", src, 1, 0, G_UNKNOWN, G_UNKNOWN, G_UNKNOWN);

0 commit comments

Comments
 (0)