Skip to content

Commit 8000e46

Browse files
committed
Issue 427 - callsign order for AGW protocol 'Y'.
1 parent 5fb4081 commit 8000e46

File tree

1 file changed

+68
-10
lines changed

1 file changed

+68
-10
lines changed

src/ax25_link.c

+68-10
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// This file is part of Dire Wolf, an amateur radio packet TNC.
33
//
4-
// Copyright (C) 2016, 2017, 2018 John Langner, WB2OSZ
4+
// Copyright (C) 2016, 2017, 2018, 2023 John Langner, WB2OSZ
55
//
66
// This program is free software: you can redistribute it and/or modify
77
// it under the terms of the GNU General Public License as published by
@@ -1580,26 +1580,78 @@ void dl_unregister_callsign (dlq_item_t *E)
15801580
* - Incoming connected data, from application still in the queue.
15811581
* - I frames which have been transmitted but not yet acknowledged.
15821582
*
1583+
* Confusion: https://github.com/wb2osz/direwolf/issues/427
1584+
*
1585+
* There are different, inconsistent versions of the protocol spec.
1586+
*
1587+
* One of them simply has:
1588+
*
1589+
* CallFrom is our call
1590+
* CallTo is the call of the other station
1591+
*
1592+
* A more detailed version has the same thing in the table of fields:
1593+
*
1594+
* CallFrom 10 bytes Our CallSign
1595+
* CallTo 10 bytes Other CallSign
1596+
*
1597+
* (My first implementation went with that.)
1598+
*
1599+
* HOWEVER, shortly after that, is contradictory information:
1600+
*
1601+
* Careful must be exercised to fill correctly both the CallFrom
1602+
* and CallTo fields to match the ones of an existing connection,
1603+
* otherwise AGWPE won’t return any information at all from this query.
1604+
*
1605+
* The order of the CallFrom and CallTo is not trivial, it should
1606+
* reflect the order used to start the connection, so
1607+
*
1608+
* * If we started the connection CallFrom=US and CallTo=THEM
1609+
* * If the other end started the connection CallFrom=THEM and CallTo=US
1610+
*
1611+
* This seems to make everything unnecessarily more complicated.
1612+
* We should only care about the stream going from the local station to the
1613+
* remote station. Why would it matter who reqested the link? The state
1614+
* machine doesn't even contain this information so the TNC doesn't know.
1615+
* The client app interface needs to behave differently for the two cases.
1616+
*
1617+
* The new code, below, May 2023, should handle both of those cases.
1618+
*
15831619
*------------------------------------------------------------------------------*/
15841620

15851621
void dl_outstanding_frames_request (dlq_item_t *E)
15861622
{
15871623
ax25_dlsm_t *S;
1588-
int ok_to_create = 0; // must exist already.
1589-
1624+
const int ok_to_create = 0; // must exist already.
1625+
int reversed_addrs = 0;
15901626

15911627
if (s_debug_client_app) {
15921628
text_color_set(DW_COLOR_DEBUG);
15931629
dw_printf ("dl_outstanding_frames_request ( to %s )\n", E->addrs[PEERCALL]);
15941630
}
15951631

15961632
S = get_link_handle (E->addrs, E->num_addr, E->chan, E->client, ok_to_create);
1597-
1598-
if (S == NULL) {
1599-
text_color_set(DW_COLOR_ERROR);
1600-
dw_printf ("Can't get outstanding frames for %s -> %s, chan %d\n", E->addrs[OWNCALL], E->addrs[PEERCALL], E->chan);
1601-
server_outstanding_frames_reply (E->chan, E->client, E->addrs[OWNCALL], E->addrs[PEERCALL], 0);
1602-
return;
1633+
if (S != NULL) {
1634+
int reversed_addrs = 1;
1635+
}
1636+
else {
1637+
// Try swapping the addresses.
1638+
// this is communicating with the client app, not over the air,
1639+
// so we don't need to worry about digipeaters.
1640+
1641+
char swapped[AX25_MAX_REPEATERS][AX25_MAX_ADDR_LEN];
1642+
memset (swapped, 0, sizeof(swapped));
1643+
strlcpy (swapped[PEERCALL], E->addrs[OWNCALL], sizeof(swapped[PEERCALL]));
1644+
strlcpy (swapped[OWNCALL], E->addrs[PEERCALL], sizeof(swapped[OWNCALL]));
1645+
S = get_link_handle (swapped, E->num_addr, E->chan, E->client, ok_to_create);
1646+
if (S != NULL) {
1647+
int reversed_addrs = 1;
1648+
}
1649+
else {
1650+
text_color_set(DW_COLOR_ERROR);
1651+
dw_printf ("Can't get outstanding frames for %s -> %s, chan %d\n", E->addrs[OWNCALL], E->addrs[PEERCALL], E->chan);
1652+
server_outstanding_frames_reply (E->chan, E->client, E->addrs[OWNCALL], E->addrs[PEERCALL], 0);
1653+
return;
1654+
}
16031655
}
16041656

16051657
// Add up these
@@ -1628,7 +1680,13 @@ void dl_outstanding_frames_request (dlq_item_t *E)
16281680
}
16291681
}
16301682

1631-
server_outstanding_frames_reply (S->chan, S->client, S->addrs[OWNCALL], S->addrs[PEERCALL], count1 + count2);
1683+
if (reversed_addrs) {
1684+
// Other end initiated the link.
1685+
server_outstanding_frames_reply (S->chan, S->client, S->addrs[PEERCALL], S->addrs[OWNCALL], count1 + count2);
1686+
}
1687+
else {
1688+
server_outstanding_frames_reply (S->chan, S->client, S->addrs[OWNCALL], S->addrs[PEERCALL], count1 + count2);
1689+
}
16321690

16331691
} // end dl_outstanding_frames_request
16341692

0 commit comments

Comments
 (0)