Mercurial > prosody-hg
diff util/ip.lua @ 9955:c74c89a96cbf 0.11
util.ip: Add missing netmask for 192.168/16 range (fixes #1343)
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Sun, 14 Apr 2019 02:06:20 +0200 |
| parents | 52d48cea1f60 |
| children | 079b31c8dbf2 aa119de5f6c7 |
line wrap: on
line diff
--- a/util/ip.lua Sat Apr 13 18:16:28 2019 +0200 +++ b/util/ip.lua Sun Apr 14 02:06:20 2019 +0200 @@ -203,7 +203,7 @@ function ip_methods:private() local private = self.scope ~= 0xE; if not private and self.proto == "IPv4" then - return match(self, rfc1918_8, 8) or match(self, rfc1918_12, 12) or match(self, rfc1918_16) or match(self, rfc6598, 10); + return match(self, rfc1918_8, 8) or match(self, rfc1918_12, 12) or match(self, rfc1918_16, 16) or match(self, rfc6598, 10); end return private; end
