Skip to content
New issue

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

socket_manager_unix: Support REUSEPORT option via envvar #103

Merged
merged 1 commit into from
Jan 24, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions lib/serverengine/socket_manager_unix.rb
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,23 @@ module ServerModule
private

def listen_tcp_new(bind_ip, port)
# TCPServer.new doesn't set IPV6_V6ONLY flag, so use Addrinfo class instead.
# TODO: make backlog configurable if necessary
tsock = Addrinfo.tcp(bind_ip.to_s, port).listen(::Socket::SOMAXCONN)
tsock.autoclose = false
TCPServer.for_fd(tsock.fileno)
if ENV['SERVERENGINE_USE_SOCKET_REUSEPORT'] == '1'
# Based on Addrinfo#listen
tsock = Socket.new(bind_ip.ipv6? ? ::Socket::AF_INET6 : ::Socket::AF_INET, ::Socket::SOCK_STREAM, 0)
tsock.ipv6only! if bind_ip.ipv6?
tsock.setsockopt(:SOCKET, :REUSEPORT, true)
tsock.setsockopt(:SOCKET, :REUSEADDR, true)
tsock.bind(Addrinfo.tcp(bind_ip.to_s, port))
tsock.listen(::Socket::SOMAXCONN)
tsock.autoclose = false
TCPServer.for_fd(tsock.fileno)
else
# TCPServer.new doesn't set IPV6_V6ONLY flag, so use Addrinfo class instead.
# TODO: make backlog configurable if necessary
tsock = Addrinfo.tcp(bind_ip.to_s, port).listen(::Socket::SOMAXCONN)
tsock.autoclose = false
TCPServer.for_fd(tsock.fileno)
end
end

def listen_udp_new(bind_ip, port)
Expand Down