Sergey Popov
Sergey Popov
@tanveery I would like to collaborate with you in reCAPTCHA for .NET 3 project. Can i send a PR?
I'm working with this issue and find that `TcpListener` and its `PullMode` params: `_acceptLimit = bind.PullMode ? 0 : _tcp.Settings.BatchAcceptLimit;` probably doesn't work as expected. If it mean that `TcpListener`...
Second question about `io.tcp.batch-accept-limit` setting. It manages size of array of `SocketAsyncEventArgs` in `TcpListener` and documentations says: ``` The maximum number of connection that are accepted in one go, higher...
> We can't reduce the SAEA to a single SAEA. The point of using asynchronous event model is to make sure that the server socket can accept multiple incoming connection...
Ok, we're not implemented pull mode correctly, so, in my opinion, if we are not going to change this logic, `Tcp.ResumeAccepting` message is useless(because we always accept new connections): ```...
@Aaronontheweb what functionality do you mean?