Skip to content

Commit a2c5f1f

Browse files
committedNov 29, 2023
8319417: (dc) DatagramChannel.connect undocumented behavior
Reviewed-by: alanb
1 parent abf2e49 commit a2c5f1f

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed
 

‎src/java.base/share/classes/java/net/DatagramSocket.java

+12
Original file line numberDiff line numberDiff line change
@@ -604,6 +604,12 @@ public SocketAddress getRemoteSocketAddress() {
604604

605605
/**
606606
* 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.
607613
*
608614
* @return a {@code SocketAddress} representing the local endpoint of this
609615
* socket, or {@code null} if it is closed or not bound yet.
@@ -714,6 +720,12 @@ public void receive(DatagramPacket p) throws IOException {
714720

715721
/**
716722
* 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.
717729
*
718730
* <p>If there is a security manager, its
719731
* {@code checkConnect} method is first called

‎src/java.base/share/classes/java/nio/channels/DatagramChannel.java

+7
Original file line numberDiff line numberDiff line change
@@ -645,6 +645,13 @@ public final long write(ByteBuffer[] srcs) throws IOException {
645645
/**
646646
* {@inheritDoc}
647647
* <p>
648+
* If the channel's socket was initially bound to the wildcard address and
649+
* is now {@link #isConnected connected}, then the address returned
650+
* may be the local address selected as the source address for
651+
* datagrams sent via this channel instead of the wildcard address.
652+
* When {@link #disconnect} is called, the bound address reverts
653+
* to the wildcard address.
654+
* <p>
648655
* If there is a security manager set, its {@code checkConnect} method is
649656
* called with the local address and {@code -1} as its arguments to see
650657
* if the operation is allowed. If the operation is not allowed,

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Nov 29, 2023

@openjdk-notifier[bot]
Please sign in to comment.