tcp: Fix re-send mechanism to tap on ACK timeout
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
74677bddb2
commit
0279ec8eae
1 changed files with 3 additions and 2 deletions
3
tcp.c
3
tcp.c
|
@ -2652,7 +2652,7 @@ static void tcp_timer_one(struct ctx *c, struct tcp_tap_conn *conn,
|
|||
struct timespec *ts)
|
||||
{
|
||||
int ack_tap_ms = timespec_diff_ms(ts, &conn->ts_ack_tap);
|
||||
int sock_ms = timespec_diff_ms(ts, &conn->ts_tap);
|
||||
int sock_ms = timespec_diff_ms(ts, &conn->ts_sock);
|
||||
int tap_ms = timespec_diff_ms(ts, &conn->ts_tap);
|
||||
|
||||
switch (conn->state) {
|
||||
|
@ -2693,6 +2693,7 @@ static void tcp_timer_one(struct ctx *c, struct tcp_tap_conn *conn,
|
|||
}
|
||||
|
||||
conn->seq_to_tap = conn->seq_ack_from_tap;
|
||||
if (sock_ms > ACK_TIMEOUT)
|
||||
tcp_data_from_sock(c, conn, ts);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue