Skip to content

Commit 88e2222

Browse files
committed
Better keyword for preemptive digipeating.
1 parent 6b76e1d commit 88e2222

File tree

2 files changed

+25
-6
lines changed

2 files changed

+25
-6
lines changed

src/config.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -2523,19 +2523,19 @@ void config_init (char *fname, struct audio_s *p_audio_config,
25232523
text_color_set(DW_COLOR_ERROR);
25242524
dw_printf ("Config file, line %d: Preemptive digipeating DROP option is discouraged.\n", line);
25252525
dw_printf ("It can create a via path which is misleading about the actual path taken.\n");
2526-
dw_printf ("TRACE is the best choice for this feature.\n");
2526+
dw_printf ("PREEMPT is the best choice for this feature.\n");
25272527
p_digi_config->preempt[from_chan][to_chan] = PREEMPT_DROP;
25282528
t = split(NULL,0);
25292529
}
25302530
else if (strcasecmp(t, "MARK") == 0) {
25312531
text_color_set(DW_COLOR_ERROR);
25322532
dw_printf ("Config file, line %d: Preemptive digipeating MARK option is discouraged.\n", line);
25332533
dw_printf ("It can create a via path which is misleading about the actual path taken.\n");
2534-
dw_printf ("TRACE is the best choice for this feature.\n");
2534+
dw_printf ("PREEMPT is the best choice for this feature.\n");
25352535
p_digi_config->preempt[from_chan][to_chan] = PREEMPT_MARK;
25362536
t = split(NULL,0);
25372537
}
2538-
else if (strcasecmp(t, "TRACE") == 0) {
2538+
else if ((strcasecmp(t, "TRACE") == 0) || (strncasecmp(t, "PREEMPT", 7) == 0)){
25392539
p_digi_config->preempt[from_chan][to_chan] = PREEMPT_TRACE;
25402540
t = split(NULL,0);
25412541
}

src/digipeater.c

+22-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@
4949
* Preemptive Digipeating (new in version 0.8)
5050
*
5151
* http://www.aprs.org/aprs12/preemptive-digipeating.txt
52-
*
52+
* I ignored the part about the RR bits.
53+
*
5354
*------------------------------------------------------------------*/
5455

5556
#define DIGIPEATER_C
@@ -440,6 +441,10 @@ static packet_t digipeat_match (int from_chan, packet_t pp, char *mycall_rec, ch
440441
/*
441442
* If preemptive digipeating is enabled, try matching my call
442443
* 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
443448
*/
444449

445450
if (preempt != PREEMPT_OFF) {
@@ -465,21 +470,35 @@ static packet_t digipeat_match (int from_chan, packet_t pp, char *mycall_rec, ch
465470

466471
switch (preempt) {
467472
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+
468478
while (r2 > AX25_REPEATER_1) {
469479
ax25_remove_addr (result, r2-1);
470480
r2--;
471481
}
472482
break;
473483

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+
475489
r2--;
476490
while (r2 >= AX25_REPEATER_1 && ax25_get_h(result,r2) == 0) {
477491
ax25_set_h (result, r2);
478492
r2--;
479493
}
480494
break;
481495

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?
483502
default:
484503
while (r2 > AX25_REPEATER_1 && ax25_get_h(result,r2-1) == 0) {
485504
ax25_remove_addr (result, r2-1);

0 commit comments

Comments
 (0)