diff options
author | wanghanlin <wanghanlin@corp.netease.com> | 2020-12-10 19:12:22 +0800 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2020-12-11 02:24:36 +0000 |
commit | 785b6ea80ce2e6458069257955fa27b3ff8c52ab (patch) | |
tree | c6a3599195eafc8bece716e56dded4833cdbc4d1 | |
parent | 492350ee645ee415593b499590757bfa8e0c4410 (diff) |
vcl: fix listener session close problem
Type: fix
Signed-off-by: wanghanlin <wanghanlin@corp.netease.com>
Change-Id: I34ac04f05b84b271679aafc253f1606f11e29835
-rw-r--r-- | src/vcl/vppcom.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vcl/vppcom.c b/src/vcl/vppcom.c index 6c85ceedd67..9c99f66cf28 100644 --- a/src/vcl/vppcom.c +++ b/src/vcl/vppcom.c @@ -1175,7 +1175,7 @@ vppcom_session_unbind (u32 session_handle) vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle); vcl_send_session_accepted_reply (session->vpp_evt_q, accepted_msg->context, - session->vpp_handle, -1); + accepted_msg->handle, -1); } clib_fifo_free (session->accept_evts_fifo); |