X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvcl%2Fvppcom.c;h=0382af45544474a4384d874246b62335e449bd21;hb=36d49391aadeb10b9f3626b62c5c019c4fddf5ed;hp=a8cebd8c4136611c10fde6d1d21a2d55807ce6cc;hpb=5e6222a0332e38316b5a58b23c35cca69bb72025;p=vpp.git diff --git a/src/vcl/vppcom.c b/src/vcl/vppcom.c index a8cebd8c413..0382af45544 100644 --- a/src/vcl/vppcom.c +++ b/src/vcl/vppcom.c @@ -749,6 +749,17 @@ vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data) return; } + if (msg->type == SESSION_CLEANUP_TRANSPORT) + { + /* Transport was cleaned up before we confirmed close. Probably the + * app is still waiting for some data that cannot be delivered. + * Confirm close to make sure everything is cleaned up */ + if (session->session_state == STATE_VPP_CLOSING) + vcl_session_cleanup (wrk, session, vcl_session_handle (session), + 1 /* do_disconnect */ ); + return; + } + vcl_session_table_del_vpp_handle (wrk, msg->handle); /* Should not happen. App did not close the connection so don't free it. */ if (session->session_state != STATE_CLOSED)