From: Amos Jeffries Date: Tue, 3 Nov 2009 09:32:08 +0000 (+1300) Subject: Author: Mikio Kishi X-Git-Tag: SQUID_3_2_0_1~623 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=320dfa34b299d67b893a08fc6a83f77221a70c35;p=thirdparty%2Fsquid.git Author: Mikio Kishi Regression Fix: myip ACL not accepted in config. --- diff --git a/src/AclRegs.cc b/src/AclRegs.cc index 7dc4ea4207..842069c8aa 100644 --- a/src/AclRegs.cc +++ b/src/AclRegs.cc @@ -95,8 +95,8 @@ ACL::Prototype ACLMaxConnection::RegistryProtoype(&ACLMaxConnection::RegistryEnt ACLMaxConnection ACLMaxConnection::RegistryEntry_("maxconn"); ACL::Prototype ACLMethod::RegistryProtoype(&ACLMethod::RegistryEntry_, "method"); ACLStrategised ACLMethod::RegistryEntry_(new ACLMethodData, ACLMethodStrategy::Instance(), "method"); +ACL::Prototype ACLMyIP::RegistryProtoype(&ACLMyIP::RegistryEntry_, "myip"); ACLMyIP ACLMyIP::RegistryEntry_; -ACLMyIP const &ACLMyIP::RegistryEntry() {return RegistryEntry_;} ACL::Prototype ACLMyPort::RegistryProtoype(&ACLMyPort::RegistryEntry_, "myport"); ACLStrategised ACLMyPort::RegistryEntry_(new ACLIntRange, ACLMyPortStrategy::Instance(), "myport"); ACL::Prototype ACLMyPortName::RegistryProtoype(&ACLMyPortName::RegistryEntry_, "myportname");