[email protected] wrote:
Author: kayyagari
Date: Wed Jun 17 01:57:28 2009
New Revision: 785466

URL: http://svn.apache.org/viewvc?rev=785466&view=rev
Log:
replaced hostname from '*' to 'localhost' to avoid Untranslated exception 
(happened on ubuntu 9.04)

Modified:
    directory/apacheds/trunk/server-xml/src/main/resources/server.xml

Modified: directory/apacheds/trunk/server-xml/src/main/resources/server.xml
URL: 
http://svn.apache.org/viewvc/directory/apacheds/trunk/server-xml/src/main/resources/server.xml?rev=785466&r1=785465&r2=785466&view=diff
==============================================================================
--- directory/apacheds/trunk/server-xml/src/main/resources/server.xml (original)
+++ directory/apacheds/trunk/server-xml/src/main/resources/server.xml Wed Jun 
17 01:57:28 2009
@@ -209,7 +209,7 @@
             maxTimeLimit="15000"
             maxSizeLimit="1000">
     <transports>
-      <tcpTransport address="*" port="10389" nbThreads="8" backLog="50" 
enableSSL="false"/>
+      <tcpTransport address="localhost" port="10389" nbThreads="8" backLog="50" 
enableSSL="false"/>
       <tcpTransport address="localhost" port="10686" enableSSL="true"/>
     </transports>

The idea was to support '*' as a way to tell MINA to listen on all the ethernet address available on the machine. Obviously, the syntax is incorrect, and should be "0.0.0.0". Now, I think we should translate "*" to "0.0.0.0" internally.




--
--
cordialement, regards,
Emmanuel Lécharny
www.iktek.com
directory.apache.org


Reply via email to