|
1 | 1 | //
|
2 | 2 | // This file is part of Dire Wolf, an amateur radio packet TNC.
|
3 | 3 | //
|
4 |
| -// Copyright (C) 2016, 2017, 2018 John Langner, WB2OSZ |
| 4 | +// Copyright (C) 2016, 2017, 2018, 2023 John Langner, WB2OSZ |
5 | 5 | //
|
6 | 6 | // This program is free software: you can redistribute it and/or modify
|
7 | 7 | // 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)
|
1580 | 1580 | * - Incoming connected data, from application still in the queue.
|
1581 | 1581 | * - I frames which have been transmitted but not yet acknowledged.
|
1582 | 1582 | *
|
| 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 | + * |
1583 | 1619 | *------------------------------------------------------------------------------*/
|
1584 | 1620 |
|
1585 | 1621 | void dl_outstanding_frames_request (dlq_item_t *E)
|
1586 | 1622 | {
|
1587 | 1623 | 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; |
1590 | 1626 |
|
1591 | 1627 | if (s_debug_client_app) {
|
1592 | 1628 | text_color_set(DW_COLOR_DEBUG);
|
1593 | 1629 | dw_printf ("dl_outstanding_frames_request ( to %s )\n", E->addrs[PEERCALL]);
|
1594 | 1630 | }
|
1595 | 1631 |
|
1596 | 1632 | 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 | + } |
1603 | 1655 | }
|
1604 | 1656 |
|
1605 | 1657 | // Add up these
|
@@ -1628,7 +1680,13 @@ void dl_outstanding_frames_request (dlq_item_t *E)
|
1628 | 1680 | }
|
1629 | 1681 | }
|
1630 | 1682 |
|
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 | + } |
1632 | 1690 |
|
1633 | 1691 | } // end dl_outstanding_frames_request
|
1634 | 1692 |
|
|
0 commit comments