diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2024-01-16 11:50:34 +1100 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2024-01-22 23:35:15 +0100 |
commit | c97bb527d6894a66f19584c1e300854c3110da64 (patch) | |
tree | 56b3fcb7c57dfd67674c3a865de15ddb877ed651 /tcp_conn.h | |
parent | eebca1115fbdb0fc72af713171434b0adbf4e87b (diff) | |
download | passt-c97bb527d6894a66f19584c1e300854c3110da64.tar passt-c97bb527d6894a66f19584c1e300854c3110da64.tar.gz passt-c97bb527d6894a66f19584c1e300854c3110da64.tar.bz2 passt-c97bb527d6894a66f19584c1e300854c3110da64.tar.lz passt-c97bb527d6894a66f19584c1e300854c3110da64.tar.xz passt-c97bb527d6894a66f19584c1e300854c3110da64.tar.zst passt-c97bb527d6894a66f19584c1e300854c3110da64.zip |
tcp, tcp_splice: Move per-type cleanup logic into per-type helpers
tcp_conn_destroy() and tcp_splice_destroy() are always called conditionally
on the connection being closed or closing. Move that logic into the
"destroy" functions themselves, renaming them tcp_flow_defer() and
tcp_splice_flow_defer().
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'tcp_conn.h')
-rw-r--r-- | tcp_conn.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -158,7 +158,7 @@ extern int init_sock_pool6 [TCP_SOCK_POOL_SIZE]; void tcp_tap_conn_update(const struct ctx *c, struct tcp_tap_conn *old, struct tcp_tap_conn *new); void tcp_splice_conn_update(const struct ctx *c, struct tcp_splice_conn *new); -void tcp_splice_destroy(struct ctx *c, union flow *flow); +void tcp_splice_flow_defer(struct ctx *c, union flow *flow); void tcp_splice_timer(const struct ctx *c, union flow *flow); int tcp_conn_pool_sock(int pool[]); int tcp_conn_new_sock(const struct ctx *c, sa_family_t af); |