We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OpenSSL::SSL::SSLServer#listen default argument backlog is 5. It is sometimes less than TCPServer#listen default argument Socket::SOMAXCONN.
OpenSSL::SSL::SSLServer#listen
backlog
Socket::SOMAXCONN
For example, on macOS Socket::SOMAXCONN is defined at sys/socket.h and its value is 128.
sys/socket.h
I think that there are solutions like below
socket
The text was updated successfully, but these errors were encountered:
I think require socket is okay.
Sorry, something went wrong.
@ioquatix Thank you for comments. 😄 I send a PR!
No branches or pull requests
OpenSSL::SSL::SSLServer#listen
default argumentbacklog
is 5.It is sometimes less than TCPServer#listen default argument
Socket::SOMAXCONN
.For example, on macOS
Socket::SOMAXCONN
is defined atsys/socket.h
and its value is 128.I think that there are solutions like below
Socket::SOMAXCONN
(but neet to requiresocket
)The text was updated successfully, but these errors were encountered: