session: fix transport half-open cleanup call

Type: fix

Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I47d241a8f2f9e9d0761d14dcddd3327c3b28932c
This commit is contained in:
Florin Coras
2021-05-19 19:33:19 -07:00
committed by Damjan Marion
parent 72afc4feb7
commit 05bc33c15d

View File

@ -307,7 +307,7 @@ transport_cleanup (transport_proto_t tp, u32 conn_index, u8 thread_index)
void
transport_cleanup_half_open (transport_proto_t tp, u32 conn_index)
{
if (tp_vfts[tp].cleanup)
if (tp_vfts[tp].cleanup_ho)
tp_vfts[tp].cleanup_ho (conn_index);
}