/[classpath]/classpath/gnu/java/nio/SocketChannelImpl.java
ViewVC logotype

Diff of /classpath/gnu/java/nio/SocketChannelImpl.java

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

revision 1.19 by mkoch, Mon Oct 20 15:41:47 2003 UTC revision 1.20 by mkoch, Wed Nov 26 20:47:06 2003 UTC
# Line 81  public final class SocketChannelImpl ext Line 81  public final class SocketChannelImpl ext
81      throws IOException      throws IOException
82    {    {
83      super (provider);      super (provider);
84      this.impl = socket.getImpl();      this.impl = socket.getPlainSocketImpl();
85      this.socket = socket;      this.socket = socket;
86    }    }
87    
# Line 99  public final class SocketChannelImpl ext Line 99  public final class SocketChannelImpl ext
99        }        }
100    }    }
101    
102    PlainSocketImpl getImpl()    PlainSocketImpl getPlainSocketImpl()
103    {    {
104      return impl;      return impl;
105    }    }
106    
107    int getNativeFD()    int getNativeFD()
108    {    {
109      return socket.getImpl().getNativeFD();      return socket.getPlainSocketImpl().getNativeFD();
110    }    }
111    
112    protected void implCloseSelectableChannel () throws IOException    protected void implCloseSelectableChannel () throws IOException

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20

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