|
29 | 29 | import java.util.Collections;
|
30 | 30 | import java.util.Enumeration;
|
31 | 31 | import java.util.Set;
|
32 |
| - |
33 | 32 | /**
|
34 | 33 | * The multicast datagram socket class is useful for sending
|
35 | 34 | * and receiving IP multicast packets. A MulticastSocket is
|
@@ -378,15 +377,18 @@ public void leaveGroup(InetAddress mcastaddr) throws IOException {
|
378 | 377 | *
|
379 | 378 | * @param mcastaddr is the multicast address to join
|
380 | 379 | * @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 |
382 | 381 | * {@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}. |
384 | 386 | * @throws IOException if there is an error joining, or when the address
|
385 | 387 | * is not a multicast address, or the platform does not support
|
386 | 388 | * multicasting
|
387 | 389 | * @throws SecurityException if a security manager exists and its
|
388 | 390 | * {@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 |
390 | 392 | * SocketAddress subclass not supported by this socket
|
391 | 393 | * @see SecurityManager#checkMulticast(InetAddress)
|
392 | 394 | * @since 1.4
|
@@ -423,15 +425,18 @@ public void joinGroup(SocketAddress mcastaddr, NetworkInterface netIf)
|
423 | 425 | * {@code mcastaddr} argument as its argument.
|
424 | 426 | *
|
425 | 427 | * @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 |
427 | 429 | * to the interface set by
|
428 | 430 | * {@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}. |
430 | 435 | * @throws IOException if there is an error leaving or when the address
|
431 | 436 | * is not a multicast address.
|
432 | 437 | * @throws SecurityException if a security manager exists and its
|
433 | 438 | * {@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 |
435 | 440 | * SocketAddress subclass not supported by this socket.
|
436 | 441 | * @see SecurityManager#checkMulticast(InetAddress)
|
437 | 442 | * @since 1.4
|
@@ -491,7 +496,9 @@ public void setInterface(InetAddress inf) throws SocketException {
|
491 | 496 | * multicast packets.
|
492 | 497 | *
|
493 | 498 | * @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. |
495 | 502 | * @throws SocketException if there is an error in the
|
496 | 503 | * underlying protocol, such as a TCP error.
|
497 | 504 | * @deprecated The network interface may not be uniquely identified by
|
@@ -573,11 +580,13 @@ public void setNetworkInterface(NetworkInterface netIf)
|
573 | 580 | /**
|
574 | 581 | * Get the multicast network interface set.
|
575 | 582 | *
|
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 |
581 | 590 | */
|
582 | 591 | public NetworkInterface getNetworkInterface() throws SocketException {
|
583 | 592 | NetworkInterface ni
|
|
0 commit comments