vcl: accept bound notifications in epoll wait
Async binds may be possible due to vls generated async binds as a result of application adding or removing listeners from epoll. App does not need to be notified of the event. Type: improvement Signed-off-by: Florin Coras <fcoras@cisco.com> Change-Id: I4d01be7ddb39ba894db85feef55e9935556c24f5
This commit is contained in:

committed by
Dave Wallace

parent
7a1e95a317
commit
01ee7a7782
@ -3142,6 +3142,9 @@ vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
|
||||
}
|
||||
session_evt_data = s->vep.ev.data.u64;
|
||||
|
||||
break;
|
||||
case SESSION_CTRL_EVT_BOUND:
|
||||
vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
|
||||
break;
|
||||
case SESSION_CTRL_EVT_RESET:
|
||||
if (!e->postponed)
|
||||
|
Reference in New Issue
Block a user