1
0
mirror of https://passt.top/passt synced 2024-07-03 00:12:41 +00:00

pasta: Clean up FIN connection flags once a connection is deleted

Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
Stefano Brivio 2021-09-15 10:43:59 +02:00
parent 57d17292f9
commit 474b8e6fb7

1
tcp.c
View File

@ -1602,6 +1602,7 @@ static void tcp_splice_destroy(struct ctx *c, struct tcp_splice_conn *conn)
close(conn->from);
tcp_splice_state(conn, CLOSED);
tcp_table_splice_compact(c, conn);
conn->from_fin_sent = conn->to_fin_sent = 0;
conn->from_read = conn->from_written = 0;
conn->to_read = conn->to_written = 0;
return;