Skip to content

Commit 06d6cab

Browse files
committed
Special ATGP digipeating hack.
1 parent 3dd125e commit 06d6cab

File tree

1 file changed

+47
-15
lines changed

1 file changed

+47
-15
lines changed

src/digipeater.c

+47-15
Original file line numberDiff line numberDiff line change
@@ -485,30 +485,32 @@ static packet_t digipeat_match (int from_chan, packet_t pp, char *mycall_rec, ch
485485

486486
// Special hack added for ATGP to behave like some combination of options in some old TNC
487487
// so the via path does not continue to grow and exceed the 8 available positions.
488+
// The strange thing about this is that the used up digipeater is left there but
489+
// removed by the next digipeater.
488490

489491
if (strlen(atgp) > 0 && strncasecmp(repeater, atgp, strlen(atgp)) == 0) {
490492

491493
if (ssid >= 1 && ssid <= 7) {
492494
packet_t result;
493495

494-
// Usual routine for digipeater.
495-
496496
result = ax25_dup (pp);
497497
assert (result != NULL);
498498

499+
// First, remove any already used digipeaters.
500+
501+
while (ax25_get_num_addr(result) >= 3 && ax25_get_h(result,AX25_REPEATER_1) == 1) {
502+
ax25_remove_addr (result, AX25_REPEATER_1);
503+
r--;
504+
}
505+
499506
ssid = ssid - 1;
500507
ax25_set_ssid(result, r, ssid); // could be zero.
501508
if (ssid == 0) {
502509
ax25_set_h (result, r);
503510
}
504511

505-
// Now remove all used digi addresses, insert own, and mark it used.
512+
// Insert own call at beginning and mark it used.
506513

507-
///////////////////////////////////////////// LOOK HERE/////////////////////////////////////////////
508-
509-
while (ax25_get_num_addr(result) >= 3 && ax25_get_h(result,AX25_REPEATER_1) == 1) {
510-
ax25_remove_addr (result, AX25_REPEATER_1);
511-
}
512514
ax25_insert_addr (result, AX25_REPEATER_1, mycall_xmit);
513515
ax25_set_h (result, AX25_REPEATER_1);
514516
return (result);
@@ -622,7 +624,7 @@ void digi_regen (int from_chan, packet_t pp)
622624

623625
#if DIGITEST
624626

625-
static char mycall[] = "WB2OSZ-9";
627+
static char mycall[12];
626628

627629
static regex_t alias_re;
628630

@@ -733,6 +735,7 @@ int main (int argc, char *argv[])
733735
int e;
734736
failed = 0;
735737
char message[256];
738+
strlcpy(mycall, "WB2OSZ-9", sizeof(mycall));
736739

737740
dedupe_init (4);
738741

@@ -943,17 +946,46 @@ int main (int argc, char *argv[])
943946
"W1ABC>TEST51,WB2OSZ-9*,HOP7-6,HOP7-7:stuff1");
944947

945948
test ( "W1ABC>TEST52,ABCD*,HOP7-1,HOP7-7:stuff2",
946-
"W1ABC>TEST52,WB2OSZ-9*,HOP7-7:stuff2");
949+
"W1ABC>TEST52,WB2OSZ-9,HOP7*,HOP7-7:stuff2"); // Used up address remains.
947950

948-
test ( "W1ABC>TEST52,HOP7*,HOP7-7:stuff3",
949-
"W1ABC>TEST52,WB2OSZ-9*,HOP7-6:stuff3");
951+
test ( "W1ABC>TEST53,HOP7*,HOP7-7:stuff3",
952+
"W1ABC>TEST53,WB2OSZ-9*,HOP7-6:stuff3"); // But it gets removed here.
950953

951-
test ( "W1ABC>TEST52,HOP7*,HOP7-1:stuff4",
952-
"W1ABC>TEST52,WB2OSZ-9*:stuff4");
954+
test ( "W1ABC>TEST54,HOP7*,HOP7-1:stuff4",
955+
"W1ABC>TEST54,WB2OSZ-9,HOP7*:stuff4"); // Remains again here.
953956

954-
test ( "W1ABC>TEST52,HOP7,HOP7*:stuff5",
957+
test ( "W1ABC>TEST55,HOP7,HOP7*:stuff5",
955958
"");
956959

960+
// Examples given for desired result.
961+
962+
strlcpy (mycall, "CLNGMN-1", sizeof(mycall));
963+
test ( "W1ABC>TEST60,HOP7-7,HOP7-7:",
964+
"W1ABC>TEST60,CLNGMN-1*,HOP7-6,HOP7-7:");
965+
test ( "W1ABC>TEST61,ROAN-3*,HOP7-6,HOP7-7:",
966+
"W1ABC>TEST61,CLNGMN-1*,HOP7-5,HOP7-7:");
967+
968+
strlcpy (mycall, "GDHILL-8", sizeof(mycall));
969+
test ( "W1ABC>TEST62,MDMTNS-7*,HOP7-1,HOP7-7:",
970+
"W1ABC>TEST62,GDHILL-8,HOP7*,HOP7-7:");
971+
test ( "W1ABC>TEST63,CAMLBK-9*,HOP7-1,HOP7-7:",
972+
"W1ABC>TEST63,GDHILL-8,HOP7*,HOP7-7:");
973+
974+
strlcpy (mycall, "MDMTNS-7", sizeof(mycall));
975+
test ( "W1ABC>TEST64,GDHILL-8*,HOP7*,HOP7-7:",
976+
"W1ABC>TEST64,MDMTNS-7*,HOP7-6:");
977+
978+
strlcpy (mycall, "CAMLBK-9", sizeof(mycall));
979+
test ( "W1ABC>TEST65,GDHILL-8,HOP7*,HOP7-7:",
980+
"W1ABC>TEST65,CAMLBK-9*,HOP7-6:");
981+
982+
strlcpy (mycall, "KATHDN-15", sizeof(mycall));
983+
test ( "W1ABC>TEST66,MTWASH-14*,HOP7-1:",
984+
"W1ABC>TEST66,KATHDN-15,HOP7*:");
985+
986+
strlcpy (mycall, "SPRNGR-1", sizeof(mycall));
987+
test ( "W1ABC>TEST67,CLNGMN-1*,HOP7-1:",
988+
"W1ABC>TEST67,SPRNGR-1,HOP7*:");
957989

958990

959991
if (failed == 0) {

0 commit comments

Comments
 (0)