2003-11-22 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/DatagramChannelImpl.java (getNativeFD): Use getPlainDatagramSocketImpl(). * gnu/java/nio/NIODatagramSocket.java (getPlainDatagramSocketImpl): Renamed from getImpl(). * gnu/java/nio/NIOSocket.java (getPlainSocketImpl): Renamed from getImpl(). (setChannel): Use getPlainSocketImpl(). * gnu/java/nio/SocketChannelImpl.java (SocketChannelImpl): Use getPlainSocketImpl(). (getPlainSocketImpl): Renamed from getImpl(). (getNativeFD): Use getPlainSocketImpl(). From-SVN: r73840
This commit is contained in:
parent
249083758d
commit
d3f010ec28
5 changed files with 21 additions and 7 deletions
|
@ -81,7 +81,7 @@ public final class SocketChannelImpl extends SocketChannel
|
|||
throws IOException
|
||||
{
|
||||
super (provider);
|
||||
this.impl = socket.getImpl();
|
||||
this.impl = socket.getPlainSocketImpl();
|
||||
this.socket = socket;
|
||||
}
|
||||
|
||||
|
@ -99,14 +99,14 @@ public final class SocketChannelImpl extends SocketChannel
|
|||
}
|
||||
}
|
||||
|
||||
PlainSocketImpl getImpl()
|
||||
PlainSocketImpl getPlainSocketImpl()
|
||||
{
|
||||
return impl;
|
||||
}
|
||||
|
||||
int getNativeFD()
|
||||
{
|
||||
return socket.getImpl().getNativeFD();
|
||||
return socket.getPlainSocketImpl().getNativeFD();
|
||||
}
|
||||
|
||||
protected void implCloseSelectableChannel () throws IOException
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue