tcp: remove a dead code leftover from T/TCP,

that doesn't have any value today.
This commit is contained in:
Gleb Smirnoff 2022-08-29 19:30:12 -07:00
parent 8fc8063849
commit c00605751e

View File

@ -2125,16 +2125,6 @@ tcp_do_segment(struct mbuf *m, struct tcphdr *th, struct socket *so,
goto process_ACK;
goto step6;
/*
* If the state is LAST_ACK or CLOSING or TIME_WAIT:
* do normal processing.
*
* NB: Leftover from RFC1644 T/TCP. Cases to be reused later.
*/
case TCPS_LAST_ACK:
case TCPS_CLOSING:
break; /* continue normal processing */
}
/*