aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/net/ServerSocket.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-09-18 11:32:46 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-09-18 11:32:46 +0000
commit9fd6479043b30a8abb901d481d0f6422f0af4fda (patch)
tree12925196dcfe56b1532ce045b0b7e55c97f93cf8 /libjava/java/net/ServerSocket.java
parent780071b5a626b11f6aafbf97f26e65f53596180a (diff)
downloadgcc-9fd6479043b30a8abb901d481d0f6422f0af4fda.zip
gcc-9fd6479043b30a8abb901d481d0f6422f0af4fda.tar.gz
gcc-9fd6479043b30a8abb901d481d0f6422f0af4fda.tar.bz2
2003-09-18 Michael Koch <konqueror@gmx.de>
* java/net/DatagramSocket.java (ch): Removed. (receive): Use getChannel() instead of ch. (send): Likewise. (getChannel): Return null. * java/net/ServerSocket.java (ch): Removed. (setChannel): Removed. (implAccept): Use getChannel() instead of ch. (close): Likewise. (getChannel): Return null. * java/net/Socket.java (ch): Removed. (connect): Use getChannel() instead of ch. (setChannel): Removed. (getChannel): Return null. From-SVN: r71516
Diffstat (limited to 'libjava/java/net/ServerSocket.java')
-rw-r--r--libjava/java/net/ServerSocket.java23
1 files changed, 5 insertions, 18 deletions
diff --git a/libjava/java/net/ServerSocket.java b/libjava/java/net/ServerSocket.java
index 4e6d709..4428178 100644
--- a/libjava/java/net/ServerSocket.java
+++ b/libjava/java/net/ServerSocket.java
@@ -73,12 +73,6 @@ public class ServerSocket
*/
private SocketImpl impl;
- /**
- * ServerSocketChannel of this ServerSocket. This channel only exists
- * when the socket is created by ServerSocketChannel.open().
- */
- private ServerSocketChannel ch;
-
private boolean closed = false;
/**
@@ -160,14 +154,6 @@ public class ServerSocket
bind (new InetSocketAddress (bindAddr, port), backlog);
}
- /*
- * This method may only be used by java.nio.channels.ServerSocketChannel.open.
- */
- void setChannel (ServerSocketChannel ch)
- {
- this.ch = ch;
- }
-
/**
* Binds the server socket to a specified socket address
*
@@ -318,7 +304,8 @@ public class ServerSocket
protected final void implAccept (Socket s)
throws IOException
{
- if (ch != null && !ch.isBlocking())
+ if (getChannel() != null
+ && !getChannel().isBlocking())
throw new IllegalBlockingModeException();
impl.accept(s.impl);
@@ -334,8 +321,8 @@ public class ServerSocket
if (impl != null)
impl.close ();
- if (ch != null)
- ch.close ();
+ if (getChannel() != null)
+ getChannel().close ();
closed = true;
}
@@ -351,7 +338,7 @@ public class ServerSocket
*/
public ServerSocketChannel getChannel()
{
- return ch;
+ return null;
}
/**