Software /
code /
prosody
Changeset
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 | 9952:6402bc76f51a |
children | 9956:737483a4b2e6 9962:29bc3dff3419 |
files | util/ip.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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