Author: borg-0300
Date: 2008-03-05 14:41:54 +0100 (Wed, 05 Mar 2008)
New Revision: 4526

Modified:
   trunk/source/de/anomic/http/httpd.java
Log:
*better logging

Modified: trunk/source/de/anomic/http/httpd.java
===================================================================
--- trunk/source/de/anomic/http/httpd.java      2008-03-05 13:29:42 UTC (rev 
4525)
+++ trunk/source/de/anomic/http/httpd.java      2008-03-05 13:41:54 UTC (rev 
4526)
@@ -54,7 +54,6 @@
 import java.io.UnsupportedEncodingException;
 import java.net.InetAddress;
 import java.net.MalformedURLException;
-import java.net.URLDecoder;
 import java.net.URLEncoder;
 import java.util.Arrays;
 import java.util.Date;
@@ -198,8 +197,8 @@
         if (this.userAddress.isAnyLocalAddress()) this.clientIP = "localhost";
         if (this.clientIP.equals("0:0:0:0:0:0:0:1")) this.clientIP = 
"localhost";
         if (this.clientIP.equals("127.0.0.1")) this.clientIP = "localhost";
-        String proxyClient = switchboard.getConfig("proxyClient", "*");
-        String serverClient = switchboard.getConfig("serverClient", "*");
+        final String proxyClient = switchboard.getConfig("proxyClient", "*");
+        final String serverClient = switchboard.getConfig("serverClient", "*");
 
         this.allowProxy = (proxyClient.equals("*")) ? true : 
match(this.clientIP, proxyClient);
         this.allowServer = (serverClient.equals("*")) ? true : 
match(this.clientIP, serverClient);
@@ -207,7 +206,7 @@
 
         // check if we want to allow this socket to connect us
         if (!(this.allowProxy || this.allowServer || this.allowYaCyHop)) {
-            String errorMsg = "CONNECTION FROM " + 
this.userAddress.getHostName() + " FORBIDDEN";
+            final String errorMsg = "CONNECTION FROM " + 
this.userAddress.getHostName() + " [" + this.clientIP + "] FORBIDDEN";
             this.log.logWarning(errorMsg);
             throw new IOException(errorMsg);
         }

_______________________________________________
YaCy-svn mailing list
YaCy-svn@lists.berlios.de
https://lists.berlios.de/mailman/listinfo/yacy-svn

Antwort per Email an