@@ -164,7 +164,34 @@ void digipeater (int from_chan, packet_t pp)
164
164
/*
165
165
* First pass: Look at packets being digipeated to same channel.
166
166
*
167
- * We want these to get out quickly.
167
+ * We want these to get out quickly, bypassing the usual random wait time.
168
+ *
169
+ * Some may disagree but I followed what WB4APR had to say about it.
170
+ *
171
+ * http://www.aprs.org/balloons.html
172
+ *
173
+ * APRS NETWORK FRATRICIDE: Generally, all APRS digipeaters are supposed to transmit
174
+ * immediately and all at the same time. They should NOT wait long enough for each
175
+ * one to QRM the channel with the same copy of each packet. NO, APRS digipeaters
176
+ * are all supposed to STEP ON EACH OTHER with every packet. This makes sure that
177
+ * everyone in range of a digi will hear one and only one copy of each packet.
178
+ * and that the packet will digipeat OUTWARD and not backward. The goal is that a
179
+ * digipeated packet is cleared out of the local area in ONE packet time and not
180
+ * N packet times for every N digipeaters that heard the packet. This means no
181
+ * PERSIST times, no DWAIT times and no UIDWAIT times. Notice, this is contrary
182
+ * to other packet systems that might want to guarantee delivery (but at the
183
+ * expense of throughput). APRS wants to clear the channel quickly to maximize throughput.
184
+ *
185
+ * http://www.aprs.org/kpc3/kpc3+WIDEn.txt
186
+ *
187
+ * THIRD: Eliminate the settings that are detrimental to the network.
188
+ *
189
+ * * UIDWAIT should be OFF. (the default). With it on, your digi is not doing the
190
+ * fundamental APRS fratricide that is the primary mechanism for minimizing channel
191
+ * loading. All digis that hear the same packet are supposed to DIGI it at the SAME
192
+ * time so that all those copies only take up one additional time slot. (but outward
193
+ * located digs will hear it without collision (and continue outward propagation)
194
+ *
168
195
*/
169
196
170
197
for (to_chan = 0 ; to_chan < MAX_CHANS ; to_chan ++ ) {
@@ -180,7 +207,7 @@ void digipeater (int from_chan, packet_t pp)
180
207
save_digi_config_p -> filter_str [from_chan ][to_chan ]);
181
208
if (result != NULL ) {
182
209
dedupe_remember (pp , to_chan );
183
- tq_append (to_chan , TQ_PRIO_0_HI , result );
210
+ tq_append (to_chan , TQ_PRIO_0_HI , result ); // High priority queue.
184
211
digi_count [from_chan ][to_chan ]++ ;
185
212
}
186
213
}
@@ -207,7 +234,7 @@ void digipeater (int from_chan, packet_t pp)
207
234
save_digi_config_p -> filter_str [from_chan ][to_chan ]);
208
235
if (result != NULL ) {
209
236
dedupe_remember (pp , to_chan );
210
- tq_append (to_chan , TQ_PRIO_1_LO , result );
237
+ tq_append (to_chan , TQ_PRIO_1_LO , result ); // Low priority queue.
211
238
digi_count [from_chan ][to_chan ]++ ;
212
239
}
213
240
}
0 commit comments