[jboss-cvs] JBossRemoting/src/main/org/jboss/remoting ...

Ron Sigal ron_sigal at yahoo.com
Wed May 23 00:40:57 EDT 2007


  User: rsigal  
  Date: 07/05/23 00:40:57

  Modified:    src/main/org/jboss/remoting  Tag: remoting_2_x
                        InvokerLocator.java
  Log:
  JBREM-687:  No longer replaces host == 0.0.0.0.
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.22.4.3  +3 -3      JBossRemoting/src/main/org/jboss/remoting/InvokerLocator.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InvokerLocator.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/InvokerLocator.java,v
  retrieving revision 1.22.4.2
  retrieving revision 1.22.4.3
  diff -u -b -r1.22.4.2 -r1.22.4.3
  --- InvokerLocator.java	22 May 2007 08:25:39 -0000	1.22.4.2
  +++ InvokerLocator.java	23 May 2007 04:40:57 -0000	1.22.4.3
  @@ -61,7 +61,7 @@
    *
    * @author <a href="mailto:jhaynie at vocalocity.net">Jeff Haynie</a>
    * @author <a href="mailto:telrod at e2technologies.net">Tom Elrod</a>
  - * @version $Revision: 1.22.4.2 $
  + * @version $Revision: 1.22.4.3 $
    */
   public class InvokerLocator implements Serializable
   {
  @@ -106,7 +106,7 @@
      /**
       * Indicates should address binding to all network interfaces (i.e. 0.0.0.0)
       */
  -   private static final String ANY = "0.0.0.0";
  +   public static final String ANY = "0.0.0.0";
      /**
       * Constant value for server bind address system property.  Value is 'jboss.bind.address'.
       */
  @@ -344,7 +344,7 @@
      {
         try
         {
  -         if(address == null || ANY.equals(address))
  +         if(address == null)
            {
               boolean byHost = true;
               String bindByHost = System.getProperty(BIND_BY_HOST, "True");
  
  
  



More information about the jboss-cvs-commits mailing list