# HG changeset patch # User Kim Alvefur # Date 1555200712 -7200 # Node ID 737483a4b2e6823ecf65987c2cc03c565fc46698 # Parent 36280801ddf1133627d8abd2dd61b4faf19fa56e# Parent c74c89a96cbf4508eb90d4cb4234ff295583706e Merge 0.11->trunk diff -r 36280801ddf1 -r 737483a4b2e6 util/ip.lua --- a/util/ip.lua Sat Apr 13 23:55:34 2019 +0200 +++ b/util/ip.lua Sun Apr 14 02:11:52 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