@@ -604,6 +604,12 @@ public SocketAddress getRemoteSocketAddress() {
604
604
605
605
/**
606
606
* Returns the address of the endpoint this socket is bound to.
607
+ * <p>If the socket was initially bound to the wildcard address and
608
+ * is now {@link #isConnected connected}, then the address returned
609
+ * may be the local address selected as the source address for
610
+ * datagrams sent on this socket instead of the wildcard address.
611
+ * When {@link #disconnect()} is called, the bound address reverts
612
+ * to the wildcard address.
607
613
*
608
614
* @return a {@code SocketAddress} representing the local endpoint of this
609
615
* socket, or {@code null} if it is closed or not bound yet.
@@ -714,6 +720,12 @@ public void receive(DatagramPacket p) throws IOException {
714
720
715
721
/**
716
722
* Gets the local address to which the socket is bound.
723
+ * <p>If the socket was initially bound to the wildcard address and
724
+ * is now {@link #isConnected connected}, then the address returned
725
+ * may be the local address selected as the source address for
726
+ * datagrams sent on the socket instead of the wildcard address.
727
+ * When {@link #disconnect()} is called, the bound address reverts
728
+ * to the wildcard address.
717
729
*
718
730
* <p>If there is a security manager, its
719
731
* {@code checkConnect} method is first called
1 commit comments
openjdk-notifier[bot] commentedon Nov 29, 2023
Review
Issues