mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
portmanager: use_ipv6 defaults to true if luasocket has ipv6 support
This commit is contained in:
parent
cfbd9d02e2
commit
45fa794da0
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
local config = require "core.configmanager";
|
||||
local certmanager = require "core.certmanager";
|
||||
local server = require "net.server";
|
||||
local socket = require "socket";
|
||||
|
||||
local log = require "util.logger".init("portmanager");
|
||||
local multitable = require "util.multitable";
|
||||
|
@ -19,7 +20,7 @@ module "portmanager";
|
|||
|
||||
local default_interfaces = { "*" };
|
||||
local default_local_interfaces = { "127.0.0.1" };
|
||||
if config.get("*", "use_ipv6") then
|
||||
if socket.tcp6 and config.get("*", "use_ipv6") ~= false then
|
||||
table.insert(default_interfaces, "::");
|
||||
table.insert(default_local_interfaces, "::1");
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue