/[classpath]/classpath/gnu/java/net/PlainSocketImpl.java
ViewVC logotype

Diff of /classpath/gnu/java/net/PlainSocketImpl.java

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

revision 1.9 by tromey, Tue Jan 4 23:36:00 2005 UTC revision 1.10 by mkoch, Wed Jan 12 08:13:45 2005 UTC
# Line 177  public final class PlainSocketImpl exten Line 177  public final class PlainSocketImpl exten
177     */     */
178    public native Object getOption(int optID) throws SocketException;    public native Object getOption(int optID) throws SocketException;
179    
180    public void shutdownInput()    /**
181    {     * Flushes the input stream and closes it. If you read from the input stream
182      throw new InternalError ("PlainSocketImpl::shutdownInput not implemented");     * after calling this method a <code>IOException</code> will be thrown.
183    }     *
184       * @throws IOException if an error occurs
185       */
186      public native void shutdownInput() throws IOException;
187    
188    public void shutdownOutput()    /**
189    {     * Flushes the output stream and closes it. If you write to the output stream
190      throw new InternalError ("PlainSocketImpl::shutdownOutput not implemented");     * after calling this method a <code>IOException</code> will be thrown.
191    }     *
192       * @throws IOException if an error occurs
193       */
194      public native void shutdownOutput() throws IOException;
195    
196    /**    /**
197     * Creates a new socket that is not bound to any local address/port and     * Creates a new socket that is not bound to any local address/port and

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10

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