summaryrefslogtreecommitdiff
path: root/lib/webrick/utils.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/webrick/utils.rb')
-rw-r--r--lib/webrick/utils.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/webrick/utils.rb b/lib/webrick/utils.rb
index 41b54271c7..7283704c1d 100644
--- a/lib/webrick/utils.rb
+++ b/lib/webrick/utils.rb
@@ -49,6 +49,9 @@ module WEBrick
module_function :getservername
def create_listeners(address, port, logger=nil)
+ unless port
+ raise ArgumentError, "must specify port"
+ end
res = Socket::getaddrinfo(address, port,
Socket::AF_UNSPEC, # address family
Socket::SOCK_STREAM, # socket type
@@ -58,8 +61,9 @@ module WEBrick
sockets = []
res.each{|ai|
begin
- logger.debug("TCPServer.new(#{ai[3]}, #{ai[1]})") if logger
- sock = TCPServer.new(ai[3], ai[1])
+ logger.debug("TCPServer.new(#{ai[3]}, #{port})") if logger
+ sock = TCPServer.new(ai[3], port)
+ port = sock.addr[1] if port == 0
Utils::set_close_on_exec(sock)
sockets << sock
rescue => ex