[vpp-dev] Does vcl_epoll_wait() support client concurrent request ? #vnet

2018-05-28 Thread muziding
HI, I developed a simple http server by vcl_epoll. When there are multiple client requests at the same time , the http server will have some errors, such as vcl_epoll_wait() will return unready session. so, I have some questions about VCL: Is VCL still in development ? Is VCL currently  

[vpp-dev] How to actively close the client connections in http server? #vnet

2018-05-17 Thread muziding
Hi I want to make the example of http server  actively close the client connection, instead of waiting for the client to close connection, after http server has responded  to the client request. What should I do?