X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fsession%2Fnode.c;h=fffc8eb385a70a2f5cadb5ea246047d58eab65be;hb=e5f1d27695e2e6b9be17198e9b49e95639a15c58;hp=ce7c38683f546c0c5026662205a42ff80ef8d12f;hpb=3335693cc1afe6742e9a5e726a682dd28b0ce4d4;p=vpp.git diff --git a/src/vnet/session/node.c b/src/vnet/session/node.c index ce7c38683f5..fffc8eb385a 100644 --- a/src/vnet/session/node.c +++ b/src/vnet/session/node.c @@ -401,6 +401,7 @@ session_queue_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node, u32 my_thread_index = vm->thread_index; int i, rv; f64 now = vlib_time_now (vm); + void (*fp) (void *); SESSION_EVT_DBG (SESSION_EVT_POLL_GAP_TRACK, smm, my_thread_index); @@ -496,6 +497,11 @@ skip_dequeue: app = application_get (s0->app_index); app->cb_fns.builtin_server_rx_callback (s0); break; + case FIFO_EVENT_RPC: + fp = e0->rpc_args.fp; + (*fp) (e0->rpc_args.arg); + break; + default: clib_warning ("unhandled event type %d", e0->event_type); }