public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] modified proxy.cgi to make it possible that all subnets declared in "network access control" will be translated from cidr to subnet notation in proxy.pac
@ 2020-10-16  8:08 steffen.klammer
  2020-10-17 12:23 ` Michael Tremer
  0 siblings, 1 reply; 3+ messages in thread
From: steffen.klammer @ 2020-10-16  8:08 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 643 bytes --]

From: Steffen Klammer <steffen.klammer(a)staderschulen.de>

---
 html/cgi-bin/proxy.cgi | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/html/cgi-bin/proxy.cgi b/html/cgi-bin/proxy.cgi
index fdf9bddaf..a63e1c2df 100644
--- a/html/cgi-bin/proxy.cgi
+++ b/html/cgi-bin/proxy.cgi
@@ -3004,7 +3004,8 @@ END
 					)
 				{
 					chomp $temp[1];
-					print FILE " ||\n     (isInNet(myIpAddress(), \"$temp[0]\", \"$temp[1]\"))";
+					my $tempmask = &Network::convert_prefix2netmask($temp[1]);
+					print FILE " ||\n     (isInNet(myIpAddress(), \"$temp[0]\", \"$tempmask\"))";
 				}
 			}
 
-- 
2.25.1


^ permalink raw reply	[flat|nested] 3+ messages in thread
[parent not found: <58a98877100b7fc25b22b270b139ddd84f5ba93d.camel@staderschulen.de>]

end of thread, other threads:[~2020-10-19  9:20 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-16  8:08 [PATCH] modified proxy.cgi to make it possible that all subnets declared in "network access control" will be translated from cidr to subnet notation in proxy.pac steffen.klammer
2020-10-17 12:23 ` Michael Tremer
     [not found] <58a98877100b7fc25b22b270b139ddd84f5ba93d.camel@staderschulen.de>
2020-10-19  9:20 ` Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox