X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fsession%2Ftransport.c;h=2c88a4c4931d708a92f77363295d64e391d742fd;hb=refs%2Fchanges%2F61%2F32261%2F4;hp=18ae3ca518883dc89feb571ba13e839a5de2d0d6;hpb=7b2917fbe2a9ec17f69ca94fcbae534927915834;p=vpp.git diff --git a/src/vnet/session/transport.c b/src/vnet/session/transport.c index 18ae3ca5188..2c88a4c4931 100644 --- a/src/vnet/session/transport.c +++ b/src/vnet/session/transport.c @@ -317,6 +317,13 @@ transport_connect (transport_proto_t tp, transport_endpoint_cfg_t * tep) return tp_vfts[tp].connect (tep); } +void +transport_half_close (transport_proto_t tp, u32 conn_index, u8 thread_index) +{ + if (tp_vfts[tp].half_close) + tp_vfts[tp].half_close (conn_index, thread_index); +} + void transport_close (transport_proto_t tp, u32 conn_index, u8 thread_index) {