net.httpserver: Pass on interface option from new_from_config() (thanks Chris)

This commit is contained in:
Matthew Wild 2009-10-19 17:56:39 +01:00
parent 67e111826e
commit d4b704023a

View file

@ -278,7 +278,9 @@ function new_from_config(ports, handle_request, default_options)
ssl.protocol = "sslv23";
end
new{ port = port, base = base, handler = handle_request, ssl = ssl, type = (ssl and "ssl") or "tcp" }
new{ port = port, interface = interface,
base = base, handler = handle_request,
ssl = ssl, type = (ssl and "ssl") or "tcp" };
end
end