mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.ip: Fix protocol detection of IPv6 addresses beginning with :
This commit is contained in:
parent
7f6333bd83
commit
97cef2740b
1 changed files with 4 additions and 2 deletions
|
@ -14,8 +14,10 @@ local hex2bits = { ["0"] = "0000", ["1"] = "0001", ["2"] = "0010", ["3"] = "0011
|
|||
local function new_ip(ipStr, proto)
|
||||
if not proto then
|
||||
local sep = ipStr:match("^%x+(.)");
|
||||
if sep == ":" then proto = "IPv6"
|
||||
elseif sep == "." then proto = "IPv4"
|
||||
if sep == ":" or (not(sep) and ipStr:sub(1,1) == ":") then
|
||||
proto = "IPv6"
|
||||
elseif sep == "." then
|
||||
proto = "IPv4"
|
||||
end
|
||||
if not proto then
|
||||
return nil, "invalid address";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue