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

Ron Sigal ron_sigal at yahoo.com
Thu Jul 20 03:24:36 EDT 2006


  User: rsigal  
  Date: 06/07/20 03:24:36

  Modified:    src/main/org/jboss/remoting/transport/multiplex 
                        MultiplexServerInvoker.java
  Log:
  JBREM-551:  Check for EOFException in run().
  
  Revision  Changes    Path
  1.52      +7 -0      JBossRemoting/src/main/org/jboss/remoting/transport/multiplex/MultiplexServerInvoker.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: MultiplexServerInvoker.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossRemoting/src/main/org/jboss/remoting/transport/multiplex/MultiplexServerInvoker.java,v
  retrieving revision 1.51
  retrieving revision 1.52
  diff -u -b -r1.51 -r1.52
  --- MultiplexServerInvoker.java	19 Jul 2006 23:22:28 -0000	1.51
  +++ MultiplexServerInvoker.java	20 Jul 2006 07:24:36 -0000	1.52
  @@ -22,6 +22,7 @@
   
   package org.jboss.remoting.transport.multiplex;
   
  +import java.io.EOFException;
   import java.io.IOException;
   import java.net.InetAddress;
   import java.net.InetSocketAddress;
  @@ -301,6 +302,12 @@
                  }
               }
            }
  +         catch (EOFException e)
  +         {
  +            log.info("end of file exception: stopping");
  +            stop();
  +            return;
  +         }
            catch (javax.net.ssl.SSLHandshakeException e)
            {
               log.info("SSLHandshakeException", e);
  
  
  



More information about the jboss-cvs-commits mailing list