49
49
* Preemptive Digipeating (new in version 0.8)
50
50
*
51
51
* http://www.aprs.org/aprs12/preemptive-digipeating.txt
52
- *
52
+ * I ignored the part about the RR bits.
53
+ *
53
54
*------------------------------------------------------------------*/
54
55
55
56
#define DIGIPEATER_C
@@ -440,6 +441,10 @@ static packet_t digipeat_match (int from_chan, packet_t pp, char *mycall_rec, ch
440
441
/*
441
442
* If preemptive digipeating is enabled, try matching my call
442
443
* and aliases against all remaining unused digipeaters.
444
+ *
445
+ * Bob says: "GENERIC XXXXn-N DIGIPEATING should not do preemptive digipeating."
446
+ *
447
+ * But consider this case: https://github.com/wb2osz/direwolf/issues/488
443
448
*/
444
449
445
450
if (preempt != PREEMPT_OFF ) {
@@ -465,21 +470,35 @@ static packet_t digipeat_match (int from_chan, packet_t pp, char *mycall_rec, ch
465
470
466
471
switch (preempt ) {
467
472
case PREEMPT_DROP : /* remove all prior */
473
+ // TODO: deprecate this option. Result is misleading.
474
+
475
+ text_color_set (DW_COLOR_ERROR );
476
+ dw_printf ("The digipeat DROP option will be removed in a future release. Use PREEMPT for preemptive digipeating.\n" );
477
+
468
478
while (r2 > AX25_REPEATER_1 ) {
469
479
ax25_remove_addr (result , r2 - 1 );
470
480
r2 -- ;
471
481
}
472
482
break ;
473
483
474
- case PREEMPT_MARK :
484
+ case PREEMPT_MARK : // TODO: deprecate this option. Result is misleading.
485
+
486
+ text_color_set (DW_COLOR_ERROR );
487
+ dw_printf ("The digipeat MARK option will be removed in a future release. Use PREEMPT for preemptive digipeating.\n" );
488
+
475
489
r2 -- ;
476
490
while (r2 >= AX25_REPEATER_1 && ax25_get_h (result ,r2 ) == 0 ) {
477
491
ax25_set_h (result , r2 );
478
492
r2 -- ;
479
493
}
480
494
break ;
481
495
482
- case PREEMPT_TRACE : /* remove prior unused */
496
+ case PREEMPT_TRACE : /* My enhancement - remove prior unused digis. */
497
+ /* this provides an accurate path of where packet traveled. */
498
+
499
+ // Uh oh. It looks like sample config files went out
500
+ // with this option. Should it be renamed as
501
+ // PREEMPT which is more descriptive?
483
502
default :
484
503
while (r2 > AX25_REPEATER_1 && ax25_get_h (result ,r2 - 1 ) == 0 ) {
485
504
ax25_remove_addr (result , r2 - 1 );
0 commit comments