mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
I don't understand, I committed this fix (move a counter and fixed a typo)
this evening. I think I'm going insane.
This commit is contained in:
parent
96d719e6e0
commit
12eafeb016
2 changed files with 6 additions and 8 deletions
|
|
@ -31,7 +31,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)tcp_input.c 8.12 (Berkeley) 5/24/95
|
||||
* $Id: tcp_input.c,v 1.49 1996/09/20 21:25:18 pst Exp $
|
||||
* $Id: tcp_input.c,v 1.50 1996/09/21 06:30:06 ache Exp $
|
||||
*/
|
||||
|
||||
#ifndef TUBA_INCLUDE
|
||||
|
|
@ -417,15 +417,14 @@ findpcb:
|
|||
*/
|
||||
so2 = sonewconn(so, 0);
|
||||
if (!so2) {
|
||||
tcpstat.tcps_listendrop++;
|
||||
so2 = TAILQ_FIRST(&so->so_incomp);
|
||||
if (so2) {
|
||||
tcp_drop(sototcpcb(so2), ETIMEDOUT);
|
||||
so2 = sonewconn(so, 0);
|
||||
}
|
||||
if (!so2) {
|
||||
tcpstat.tcps_listendrop++;
|
||||
if (!so2)
|
||||
goto drop;
|
||||
}
|
||||
}
|
||||
so = so2;
|
||||
/*
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
* SUCH DAMAGE.
|
||||
*
|
||||
* @(#)tcp_input.c 8.12 (Berkeley) 5/24/95
|
||||
* $Id: tcp_input.c,v 1.49 1996/09/20 21:25:18 pst Exp $
|
||||
* $Id: tcp_input.c,v 1.50 1996/09/21 06:30:06 ache Exp $
|
||||
*/
|
||||
|
||||
#ifndef TUBA_INCLUDE
|
||||
|
|
@ -417,15 +417,14 @@ findpcb:
|
|||
*/
|
||||
so2 = sonewconn(so, 0);
|
||||
if (!so2) {
|
||||
tcpstat.tcps_listendrop++;
|
||||
so2 = TAILQ_FIRST(&so->so_incomp);
|
||||
if (so2) {
|
||||
tcp_drop(sototcpcb(so2), ETIMEDOUT);
|
||||
so2 = sonewconn(so, 0);
|
||||
}
|
||||
if (!so2) {
|
||||
tcpstat.tcps_listendrop++;
|
||||
if (!so2)
|
||||
goto drop;
|
||||
}
|
||||
}
|
||||
so = so2;
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue