Skip to content

Commit b81de60

Browse files
committed
Issue 85 - Don't remove duplicates for IGate RX>IS direction.
1 parent 5cb6e04 commit b81de60

5 files changed

+78
-4
lines changed

config.c

+14-2
Original file line numberDiff line numberDiff line change
@@ -869,6 +869,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
869869
p_igate_config->tx_limit_1 = IGATE_TX_LIMIT_1_DEFAULT;
870870
p_igate_config->tx_limit_5 = IGATE_TX_LIMIT_5_DEFAULT;
871871
p_igate_config->igmsp = 1;
872+
p_igate_config->rx2ig_dedupe_time = IGATE_RX2IG_DEDUPE_TIME;
872873

873874

874875
/* People find this confusing. */
@@ -2234,10 +2235,18 @@ void config_init (char *fname, struct audio_s *p_audio_config,
22342235
t = split(NULL,0);
22352236
}
22362237
else if (strcasecmp(t, "DROP") == 0) {
2238+
text_color_set(DW_COLOR_ERROR);
2239+
dw_printf ("Config file, line %d: Preemptive digipeating DROP option is discouraged.\n", line);
2240+
dw_printf ("It can create a via path which is misleading about the actual path taken.\n");
2241+
dw_printf ("TRACE is the best choice for this feature.\n");
22372242
p_digi_config->preempt[from_chan][to_chan] = PREEMPT_DROP;
22382243
t = split(NULL,0);
22392244
}
22402245
else if (strcasecmp(t, "MARK") == 0) {
2246+
text_color_set(DW_COLOR_ERROR);
2247+
dw_printf ("Config file, line %d: Preemptive digipeating MARK option is discouraged.\n", line);
2248+
dw_printf ("It can create a via path which is misleading about the actual path taken.\n");
2249+
dw_printf ("TRACE is the best choice for this feature.\n");
22412250
p_digi_config->preempt[from_chan][to_chan] = PREEMPT_MARK;
22422251
t = split(NULL,0);
22432252
}
@@ -4160,13 +4169,13 @@ void config_init (char *fname, struct audio_s *p_audio_config,
41604169
p_igate_config->igmsp = n;
41614170
}
41624171
else {
4163-
p_igate_config->satgate_delay = 1;
4172+
p_igate_config->igmsp = 1;
41644173
text_color_set(DW_COLOR_ERROR);
41654174
dw_printf ("Line %d: Unreasonable number of times for message sender position. Using default 1.\n", line);
41664175
}
41674176
}
41684177
else {
4169-
p_igate_config->satgate_delay = 1;
4178+
p_igate_config->igmsp = 1;
41704179
text_color_set(DW_COLOR_ERROR);
41714180
dw_printf ("Line %d: Missing number of times for message sender position. Using default 1.\n", line);
41724181
}
@@ -4182,6 +4191,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
41824191

41834192
else if (strcasecmp(t, "SATGATE") == 0) {
41844193

4194+
text_color_set(DW_COLOR_INFO);
4195+
dw_printf ("Line %d: SATGATE is pretty useless and will be removed in a future version.\n", line);
4196+
41854197
t = split(NULL,0);
41864198
if (t != NULL) {
41874199

53.9 KB
Binary file not shown.

doc/User-Guide.pdf

45.8 KB
Binary file not shown.

igate.c

+52-2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
* APRS iGate properties
3434
* http://wiki.ham.fi/APRS_iGate_properties
3535
*
36+
* Notes to iGate developers
37+
* https://github.com/hessu/aprsc/blob/master/doc/IGATE-HINTS.md#igates-dropping-duplicate-packets-unnecessarily
38+
*
3639
* SATgate mode.
3740
* http://www.tapr.org/pipermail/aprssig/2016-January/045283.html
3841
*
@@ -1959,9 +1962,37 @@ static void maybe_xmit_packet_from_igate (char *message, int to_chan)
19591962
* There is a 1 / 65536 chance of getting a false positive match
19601963
* which is good enough for this application.
19611964
*
1965+
*
1966+
* Original thinking:
1967+
*
1968+
* Occasionally someone will get on one of the discussion groups and say:
1969+
* I don't think my IGate is working. I look at packets, from local stations,
1970+
* on aprs.fi or findu.com, and they are always through some other IGate station,
1971+
* never mine.
1972+
* Then someone has to explain, this is not a valid strategy for analyzing
1973+
* everything going thru the network. The APRS-IS servers drop duplicate
1974+
* packets (ignoring the via path) within a 30 second period. If some
1975+
* other IGate gets the same thing there a millisecond faster than you,
1976+
* the one you send is discarded.
1977+
* In this scenario, it would make sense to perform additional duplicate
1978+
* suppression before forwarding RF packets to the Server.
1979+
* I don't recall if I saw some specific recommendation to do this or if
1980+
* it just seemed like the obvious thing to do to avoid sending useless
1981+
* stuff that would just be discarded anyhow. It seems others came to the
1982+
* same conclusion. http://www.tapr.org/pipermail/aprssig/2016-July/045907.html
1983+
*
1984+
* Version 1.5: Rethink strategy.
1985+
*
1986+
* Issue 85, https://github.com/wb2osz/direwolf/issues/85 ,
1987+
* got me thinking about this some more. Sending more information will
1988+
* allow the APRS-IS servers to perform future additional network analysis.
1989+
* To make a long story short, the RF>IS direction duplicate checking
1990+
* is now disabled. The code is still there in case I change my mind
1991+
* and want to add a configuration option to allow it. The dedupe
1992+
* time is set to 0 which means don't do the checking.
1993+
*
19621994
*--------------------------------------------------------------------*/
19631995

1964-
#define RX2IG_DEDUPE_TIME 60 /* Do not send duplicate within 60 seconds. */
19651996
#define RX2IG_HISTORY_MAX 30 /* Remember the last 30 sent to IGate server. */
19661997

19671998
static int rx2ig_insert_next;
@@ -1982,6 +2013,12 @@ static void rx_to_ig_init (void)
19822013
static void rx_to_ig_remember (packet_t pp)
19832014
{
19842015

2016+
// No need to save the information if we are not doing duplicate checking.
2017+
2018+
if (save_igate_config_p->rx2ig_dedupe_time == 0) {
2019+
return;
2020+
}
2021+
19852022
rx2ig_time_stamp[rx2ig_insert_next] = time(NULL);
19862023
rx2ig_checksum[rx2ig_insert_next] = ax25_dedupe_crc(pp);
19872024

@@ -2031,8 +2068,21 @@ static int rx_to_ig_allow (packet_t pp)
20312068
dw_printf ("rx_to_ig_allow? %d \"%s>%s:%s\"\n", crc, src, dest, pinfo);
20322069
}
20332070

2071+
2072+
// Do we have duplicate checking at all in the RF>IS direction?
2073+
2074+
if (save_igate_config_p->rx2ig_dedupe_time == 0) {
2075+
if (s_debug >= 2) {
2076+
text_color_set(DW_COLOR_DEBUG);
2077+
dw_printf ("rx_to_ig_allow? YES, no dedupe checking\n");
2078+
}
2079+
return 1;
2080+
}
2081+
2082+
// Yes, check for duplicates within certain time.
2083+
20342084
for (j=0; j<RX2IG_HISTORY_MAX; j++) {
2035-
if (rx2ig_checksum[j] == crc && rx2ig_time_stamp[j] >= now - RX2IG_DEDUPE_TIME) {
2085+
if (rx2ig_checksum[j] == crc && rx2ig_time_stamp[j] >= now - save_igate_config_p->rx2ig_dedupe_time) {
20362086
if (s_debug >= 2) {
20372087
text_color_set(DW_COLOR_DEBUG);
20382088
// could be multiple entries and this might not be the most recent.

igate.h

+12
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ struct igate_config_s {
3939
char t2_passcode[8]; /* Max. 5 digits. Could be "-1". */
4040

4141
char *t2_filter; /* Optional filter for IS -> RF direction. */
42+
/* This is the "server side" filter. */
43+
/* A better name would be subscription or something */
44+
/* like that because we can only ask for more. */
4245

4346
/*
4447
* For transmitting.
@@ -69,6 +72,11 @@ struct igate_config_s {
6972
/* We allow additional flexibility of 0 to disable feature */
7073
/* or a small number to allow more. */
7174

75+
/*
76+
* Receiver to IS data options.
77+
*/
78+
int rx2ig_dedupe_time; /* seconds. 0 to disable. */
79+
7280
/*
7381
* Special SATgate mode to delay packets heard directly.
7482
*/
@@ -82,6 +90,10 @@ struct igate_config_s {
8290
#define IGATE_TX_LIMIT_5_DEFAULT 20
8391
#define IGATE_TX_LIMIT_5_MAX 80
8492

93+
#define IGATE_RX2IG_DEDUPE_TIME 0 /* Issue 85. 0 means disable dupe checking in RF>IS direction. */
94+
/* See comments in rx_to_ig_remember & rx_to_ig_allow. */
95+
/* Currently there is no configuration setting to change this. */
96+
8597
#define DEFAULT_SATGATE_DELAY 10
8698
#define MIN_SATGATE_DELAY 5
8799
#define MAX_SATGATE_DELAY 30

0 commit comments

Comments
 (0)