From: Michael Koch Date: Wed, 26 Nov 2003 12:45:21 +0000 (+0000) Subject: 2003-11-26 Michael Koch X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=948888e1e174192e8c8921137038c491f22c1eea;p=gcc.git 2003-11-26 Michael Koch * java/net/Socket.java (implCreated): Dont set default value explicitely, added documentation. (inputShutdown): Likewise. (outputShutdown): Likewise. (bound): New private member variable. (bind): Set bound to true. (close): Set bound to false. (isBound): Return bound. * java/net/ServerSocket.java (bound): New private member variable. (bind): Set bound to true. (close): Set bound to false. (isBound): Return bound. From-SVN: r73949 --- diff --git a/libjava/ChangeLog b/libjava/ChangeLog index a0aa4e120dd..c0267acb1a3 100644 --- a/libjava/ChangeLog +++ b/libjava/ChangeLog @@ -1,3 +1,20 @@ +2003-11-26 Michael Koch + + * java/net/Socket.java + (implCreated): Dont set default value explicitely, added + documentation. + (inputShutdown): Likewise. + (outputShutdown): Likewise. + (bound): New private member variable. + (bind): Set bound to true. + (close): Set bound to false. + (isBound): Return bound. + * java/net/ServerSocket.java + (bound): New private member variable. + (bind): Set bound to true. + (close): Set bound to false. + (isBound): Return bound. + 2003-11-26 Michael Koch * java/net/URL.java diff --git a/libjava/java/net/ServerSocket.java b/libjava/java/net/ServerSocket.java index d1ea4d6c2ba..7af1a3301c0 100644 --- a/libjava/java/net/ServerSocket.java +++ b/libjava/java/net/ServerSocket.java @@ -73,6 +73,11 @@ public class ServerSocket */ private SocketImpl impl; + /** + * True if socket is bound. + */ + private boolean bound; + /* * This constructor is only used by java.nio. */ @@ -225,6 +230,7 @@ public class ServerSocket { impl.bind (tmp.getAddress (), tmp.getPort ()); impl.listen(backlog); + bound = true; } catch (IOException exception) { @@ -355,6 +361,7 @@ public class ServerSocket getChannel().close(); impl = null; + bound = false; } } @@ -379,16 +386,7 @@ public class ServerSocket */ public boolean isBound() { - try - { - Object bindaddr = impl.getOption (SocketOptions.SO_BINDADDR); - } - catch (SocketException e) - { - return false; - } - - return true; + return bound; } /** diff --git a/libjava/java/net/Socket.java b/libjava/java/net/Socket.java index 1b443d08a1e..27fa69131b5 100644 --- a/libjava/java/net/Socket.java +++ b/libjava/java/net/Socket.java @@ -79,10 +79,25 @@ public class Socket */ private SocketImpl impl; - private boolean implCreated = false; + /** + * True if socket implementation was created by calling their create() method. + */ + private boolean implCreated; + + /** + * True if the socket is bound. + */ + private boolean bound; - private boolean inputShutdown = false; - private boolean outputShutdown = false; + /** + * True if input is shutdown. + */ + private boolean inputShutdown; + + /** + * True if output is shutdown. + */ + private boolean outputShutdown; /** * Initializes a new instance of Socket object without @@ -342,6 +357,7 @@ public class Socket try { getImpl().bind (tmp.getAddress(), tmp.getPort()); + bound = true; } catch (IOException exception) { @@ -995,6 +1011,7 @@ public class Socket getChannel().close(); impl = null; + bound = false; } /** @@ -1206,7 +1223,7 @@ public class Socket */ public boolean isBound () { - return getLocalAddress () != null; + return bound; } /**