Skip to content

Commit 8e32286

Browse files
committed
Issue 275 - AGW 'd' would not abort a connect attempt in progress.
1 parent 8000e46 commit 8e32286

File tree

1 file changed

+25
-6
lines changed

1 file changed

+25
-6
lines changed

src/ax25_link.c

+25-6
Original file line numberDiff line numberDiff line change
@@ -1075,12 +1075,31 @@ void dl_disconnect_request (dlq_item_t *E)
10751075
case state_1_awaiting_connection:
10761076
case state_5_awaiting_v22_connection:
10771077

1078-
// TODO: "requeue." Not sure what to do here.
1079-
// If we put it back in the queue we will get it back again probably still in same state.
1080-
// Need a way to defer it until the next state change.
1078+
// Erratum: The protocol spec says "requeue." If we put disconnect req back in the
1079+
// queue we will probably get it back again here while still in same state.
1080+
// I don't think we would want to delay it until the next state transition.
10811081

1082+
// Suppose someone tried to connect to another station, which is not responding, and decided to cancel
1083+
// before all of the SABMe retries were used up. I think we would want to transmit a DISC, send a disc
1084+
// notice to the user, and go directly into disconnected state, rather than into awaiting release.
1085+
1086+
// New code v1.7 dev, May 6 2023
1087+
1088+
text_color_set(DW_COLOR_INFO);
1089+
dw_printf ("Stream %d: In progress connection attempt to %s terminated by user.\n", S->stream_id, S->addrs[PEERCALL]);
1090+
discard_i_queue (S);
1091+
SET_RC(0);
1092+
int p1 = 1;
1093+
int nopid0 = 0;
1094+
packet_t pp15 = ax25_u_frame (S->addrs, S->num_addr, cr_cmd, frame_type_U_DISC, p1, nopid0, NULL, 0);
1095+
lm_data_request (S->chan, TQ_PRIO_1_LO, pp15);
1096+
1097+
STOP_T1; // started in establish_data_link.
1098+
STOP_T3; // probably don't need.
1099+
enter_new_state (S, state_0_disconnected, __func__, __LINE__);
1100+
server_link_terminated (S->chan, S->client, S->addrs[PEERCALL], S->addrs[OWNCALL], 0);
10821101
break;
1083-
1102+
10841103
case state_2_awaiting_release:
10851104
{
10861105
// We have previously started the disconnect sequence and are waiting
@@ -1631,7 +1650,7 @@ void dl_outstanding_frames_request (dlq_item_t *E)
16311650

16321651
S = get_link_handle (E->addrs, E->num_addr, E->chan, E->client, ok_to_create);
16331652
if (S != NULL) {
1634-
int reversed_addrs = 1;
1653+
reversed_addrs = 0;
16351654
}
16361655
else {
16371656
// Try swapping the addresses.
@@ -1644,7 +1663,7 @@ void dl_outstanding_frames_request (dlq_item_t *E)
16441663
strlcpy (swapped[OWNCALL], E->addrs[PEERCALL], sizeof(swapped[OWNCALL]));
16451664
S = get_link_handle (swapped, E->num_addr, E->chan, E->client, ok_to_create);
16461665
if (S != NULL) {
1647-
int reversed_addrs = 1;
1666+
reversed_addrs = 1;
16481667
}
16491668
else {
16501669
text_color_set(DW_COLOR_ERROR);

0 commit comments

Comments
 (0)