mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Ensure that the COOKIE-ACK can be sent over UDP if the COOKIE-ECHO was
received over UDP. Thanks to Felix Weinrank for makeing me aware of the problem and to Irene Ruengeler for providing the fix. MFC after: 1 week
This commit is contained in:
parent
eccfe69a5c
commit
fcbbf5af1d
1 changed files with 2 additions and 1 deletions
|
|
@ -2325,12 +2325,13 @@ sctp_process_cookie_new(struct mbuf *m, int iphlen, int offset,
|
|||
sctp_is_feature_on(inp, SCTP_PCB_FLAGS_AUTOCLOSE)) {
|
||||
sctp_timer_start(SCTP_TIMER_TYPE_AUTOCLOSE, inp, stcb, NULL);
|
||||
}
|
||||
/* calculate the RTT */
|
||||
(void)SCTP_GETTIME_TIMEVAL(&stcb->asoc.time_entered);
|
||||
if ((netp) && (*netp)) {
|
||||
/* calculate the RTT and set the encaps port */
|
||||
(*netp)->RTO = sctp_calculate_rto(stcb, asoc, *netp,
|
||||
&cookie->time_entered, sctp_align_unsafe_makecopy,
|
||||
SCTP_RTT_FROM_NON_DATA);
|
||||
(*netp)->port = port;
|
||||
}
|
||||
/* respond with a COOKIE-ACK */
|
||||
sctp_send_cookie_ack(stcb);
|
||||
|
|
|
|||
Loading…
Reference in a new issue