Update libslirp to 4.7.0 with our customizations

This commit is contained in:
Jasmine Iwanek
2023-02-06 12:46:37 -05:00
parent 0daee20e8b
commit 3b5cfe8bfc
50 changed files with 2071 additions and 441 deletions

View File

@@ -52,7 +52,7 @@ void tcp_fasttimo(Slirp *slirp)
(tp->t_flags & TF_DELACK)) {
tp->t_flags &= ~TF_DELACK;
tp->t_flags |= TF_ACKNOW;
(void)tcp_output(tp);
tcp_output(tp);
}
}
@@ -233,7 +233,7 @@ static struct tcpcb *tcp_timers(register struct tcpcb *tp, int timer)
tp->snd_ssthresh = win * tp->t_maxseg;
tp->t_dupacks = 0;
}
(void)tcp_output(tp);
tcp_output(tp);
break;
/*
@@ -243,7 +243,7 @@ static struct tcpcb *tcp_timers(register struct tcpcb *tp, int timer)
case TCPT_PERSIST:
tcp_setpersist(tp);
tp->t_force = 1;
(void)tcp_output(tp);
tcp_output(tp);
tp->t_force = 0;
break;