@@ -1075,12 +1075,31 @@ void dl_disconnect_request (dlq_item_t *E)
1075
1075
case state_1_awaiting_connection :
1076
1076
case state_5_awaiting_v22_connection :
1077
1077
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 .
1081
1081
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 );
1082
1101
break ;
1083
-
1102
+
1084
1103
case state_2_awaiting_release :
1085
1104
{
1086
1105
// We have previously started the disconnect sequence and are waiting
@@ -1631,7 +1650,7 @@ void dl_outstanding_frames_request (dlq_item_t *E)
1631
1650
1632
1651
S = get_link_handle (E -> addrs , E -> num_addr , E -> chan , E -> client , ok_to_create );
1633
1652
if (S != NULL ) {
1634
- int reversed_addrs = 1 ;
1653
+ reversed_addrs = 0 ;
1635
1654
}
1636
1655
else {
1637
1656
// Try swapping the addresses.
@@ -1644,7 +1663,7 @@ void dl_outstanding_frames_request (dlq_item_t *E)
1644
1663
strlcpy (swapped [OWNCALL ], E -> addrs [PEERCALL ], sizeof (swapped [OWNCALL ]));
1645
1664
S = get_link_handle (swapped , E -> num_addr , E -> chan , E -> client , ok_to_create );
1646
1665
if (S != NULL ) {
1647
- int reversed_addrs = 1 ;
1666
+ reversed_addrs = 1 ;
1648
1667
}
1649
1668
else {
1650
1669
text_color_set (DW_COLOR_ERROR );
0 commit comments