Skip to content

Commit 12e43e2

Browse files
committedDec 9, 2019
8233191: MulticastSocket joinGroup/leaveGroup do not specify their behavior when the outgoing interface has not been set
Clarifies the behaviour of 2-arg joinGroup/leaveGroup methods when null is passed for the NetworkInteface argument. The fix also clarifies what is returned by getInterface() and getNetworkInterface() methods when no previous NetworkInterface has been set. Reviewed-by: alanb, chegar, dfuchs
1 parent 3cccc62 commit 12e43e2

File tree

1 file changed

+22
-13
lines changed

1 file changed

+22
-13
lines changed
 

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

+22-13
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
import java.util.Collections;
3030
import java.util.Enumeration;
3131
import java.util.Set;
32-
3332
/**
3433
* The multicast datagram socket class is useful for sending
3534
* and receiving IP multicast packets. A MulticastSocket is
@@ -378,15 +377,18 @@ public void leaveGroup(InetAddress mcastaddr) throws IOException {
378377
*
379378
* @param mcastaddr is the multicast address to join
380379
* @param netIf specifies the local interface to receive multicast
381-
* datagram packets, or <i>null</i> to defer to the interface set by
380+
* datagram packets, or {@code null} to defer to the interface set by
382381
* {@link MulticastSocket#setInterface(InetAddress)} or
383-
* {@link MulticastSocket#setNetworkInterface(NetworkInterface)}
382+
* {@link MulticastSocket#setNetworkInterface(NetworkInterface)}.
383+
* If {@code null}, and no interface has been set, the behaviour is
384+
* unspecified: any interface may be selected or the operation may fail
385+
* with a {@code SocketException}.
384386
* @throws IOException if there is an error joining, or when the address
385387
* is not a multicast address, or the platform does not support
386388
* multicasting
387389
* @throws SecurityException if a security manager exists and its
388390
* {@code checkMulticast} method doesn't allow the join.
389-
* @throws IllegalArgumentException if mcastaddr is null or is a
391+
* @throws IllegalArgumentException if mcastaddr is {@code null} or is a
390392
* SocketAddress subclass not supported by this socket
391393
* @see SecurityManager#checkMulticast(InetAddress)
392394
* @since 1.4
@@ -423,15 +425,18 @@ public void joinGroup(SocketAddress mcastaddr, NetworkInterface netIf)
423425
* {@code mcastaddr} argument as its argument.
424426
*
425427
* @param mcastaddr is the multicast address to leave
426-
* @param netIf specifies the local interface or <i>null</i> to defer
428+
* @param netIf specifies the local interface or {@code null} to defer
427429
* to the interface set by
428430
* {@link MulticastSocket#setInterface(InetAddress)} or
429-
* {@link MulticastSocket#setNetworkInterface(NetworkInterface)}
431+
* {@link MulticastSocket#setNetworkInterface(NetworkInterface)}.
432+
* If {@code null}, and no interface has been set, the behaviour
433+
* is unspecified: any interface may be selected or the operation
434+
* may fail with a {@code SocketException}.
430435
* @throws IOException if there is an error leaving or when the address
431436
* is not a multicast address.
432437
* @throws SecurityException if a security manager exists and its
433438
* {@code checkMulticast} method doesn't allow the operation.
434-
* @throws IllegalArgumentException if mcastaddr is null or is a
439+
* @throws IllegalArgumentException if mcastaddr is {@code null} or is a
435440
* SocketAddress subclass not supported by this socket.
436441
* @see SecurityManager#checkMulticast(InetAddress)
437442
* @since 1.4
@@ -491,7 +496,9 @@ public void setInterface(InetAddress inf) throws SocketException {
491496
* multicast packets.
492497
*
493498
* @return An {@code InetAddress} representing the address
494-
* of the network interface used for multicast packets.
499+
* of the network interface used for multicast packets,
500+
* or if no interface has been set, an {@code InetAddress}
501+
* representing any local address.
495502
* @throws SocketException if there is an error in the
496503
* underlying protocol, such as a TCP error.
497504
* @deprecated The network interface may not be uniquely identified by
@@ -573,11 +580,13 @@ public void setNetworkInterface(NetworkInterface netIf)
573580
/**
574581
* Get the multicast network interface set.
575582
*
576-
* @throws SocketException if there is an error in
577-
* the underlying protocol, such as a TCP error.
578-
* @return the multicast {@code NetworkInterface} currently set
579-
* @see #setNetworkInterface(NetworkInterface)
580-
* @since 1.4
583+
* @throws SocketException if there is an error in
584+
* the underlying protocol, such as a TCP error.
585+
* @return The multicast {@code NetworkInterface} currently set. A placeholder
586+
* NetworkInterface is returned when there is no interface set; it has
587+
* a single InetAddress to represent any local address.
588+
* @see #setNetworkInterface(NetworkInterface)
589+
* @since 1.4
581590
*/
582591
public NetworkInterface getNetworkInterface() throws SocketException {
583592
NetworkInterface ni

0 commit comments

Comments
 (0)
Please sign in to comment.