33
33
* APRS iGate properties
34
34
* http://wiki.ham.fi/APRS_iGate_properties
35
35
*
36
+ * Notes to iGate developers
37
+ * https://github.com/hessu/aprsc/blob/master/doc/IGATE-HINTS.md#igates-dropping-duplicate-packets-unnecessarily
38
+ *
36
39
* SATgate mode.
37
40
* http://www.tapr.org/pipermail/aprssig/2016-January/045283.html
38
41
*
@@ -1959,9 +1962,37 @@ static void maybe_xmit_packet_from_igate (char *message, int to_chan)
1959
1962
* There is a 1 / 65536 chance of getting a false positive match
1960
1963
* which is good enough for this application.
1961
1964
*
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
+ *
1962
1994
*--------------------------------------------------------------------*/
1963
1995
1964
- #define RX2IG_DEDUPE_TIME 60 /* Do not send duplicate within 60 seconds. */
1965
1996
#define RX2IG_HISTORY_MAX 30 /* Remember the last 30 sent to IGate server. */
1966
1997
1967
1998
static int rx2ig_insert_next ;
@@ -1982,6 +2013,12 @@ static void rx_to_ig_init (void)
1982
2013
static void rx_to_ig_remember (packet_t pp )
1983
2014
{
1984
2015
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
+
1985
2022
rx2ig_time_stamp [rx2ig_insert_next ] = time (NULL );
1986
2023
rx2ig_checksum [rx2ig_insert_next ] = ax25_dedupe_crc (pp );
1987
2024
@@ -2031,8 +2068,21 @@ static int rx_to_ig_allow (packet_t pp)
2031
2068
dw_printf ("rx_to_ig_allow? %d \"%s>%s:%s\"\n" , crc , src , dest , pinfo );
2032
2069
}
2033
2070
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
+
2034
2084
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 ) {
2036
2086
if (s_debug >= 2 ) {
2037
2087
text_color_set (DW_COLOR_DEBUG );
2038
2088
// could be multiple entries and this might not be the most recent.
0 commit comments