/[classpath]/classpath/gnu/classpath/jdwp/transport/SocketTransport.java
ViewVC logotype

Diff of /classpath/gnu/classpath/jdwp/transport/SocketTransport.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2.2.1 by gnu_andrew, Tue Aug 2 20:12:08 2005 UTC revision 1.2.2.2 by gnu_andrew, Sat Sep 10 15:31:36 2005 UTC
# Line 57  import javax.net.SocketFactory; Line 57  import javax.net.SocketFactory;
57   * configury string that looks like "name=dt_socket,   * configury string that looks like "name=dt_socket,
58   * address=localhost:1234,server=y".   * address=localhost:1234,server=y".
59   *   *
60   * @author Keith Seitz <keiths@redhat.com>   * @author Keith Seitz (keiths@redhat.com)
61   */   */
62  class SocketTransport  class SocketTransport
63    implements ITransport    implements ITransport
# Line 145  class SocketTransport Line 145  class SocketTransport
145        }        }
146    }    }
147    
148      /**
149       * Shutdown the socket. This could cause SocketExceptions
150       * for anyone blocked on socket i/o
151       */
152      public void shutdown ()
153      {
154        try
155          {
156            _socket.close ();
157          }
158        catch (Throwable t)
159          {
160            // We don't really care about errors at this point
161          }
162      }
163    
164    /**    /**
165     * Returns an <code>InputStream</code> for the transport     * Returns an <code>InputStream</code> for the transport
166     *     *

Legend:
Removed from v.1.2.2.1  
changed lines
  Added in v.1.2.2.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26