IpAccessHandler
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1281 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
aa5c82df8e
commit
3b6870c4ec
|
@ -31,6 +31,7 @@ jetty-7.0.2-SNAPSHOT
|
|||
+ JETTY-1179 Persistant session tables created on MySQL use wrong datatype
|
||||
+ JETTY-1184 shrink thread pool even with frequent small jobs
|
||||
+ COMETD-46 reset ContentExchange response content on resend
|
||||
+ Added IPAccessHandler
|
||||
|
||||
jetty-7.0.1.v20091125 25 November 2009
|
||||
+ 274251 DefaultServlet supports exact match mode.
|
||||
|
|
|
@ -131,7 +131,6 @@ public class IPAccessHandler extends HandlerWrapper
|
|||
String path = idx > 0 ? addrPath.substring(idx) : null;
|
||||
if (path!=null && path.length()>1 && path.charAt(1)=='*')
|
||||
path=path.substring(1);
|
||||
System.err.println("addr="+addr+" path="+path);
|
||||
|
||||
PathMap map = addrMap.get(addr);
|
||||
if (map==null)
|
||||
|
|
Loading…
Reference in New Issue