Skip to content

Commit 6a7f775

Browse files
committedNov 21, 2019
8234083: DatagramSocket should report SO_BROADCAST as a supported option
DatagramSocket had a setBroadcast and getBroadcast setter/getter pair but curiously didn't report SO_BROADCAST as a supported option. Note: the source code changes were accidentally pushed with 8234103 so this changeset only has the test changes. The reviewers listed below had already reviewed the full (source+test) changes. Reviewed-by: alanb, vtewari, chegar
1 parent 76e5a32 commit 6a7f775

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎test/jdk/java/net/SocketOption/OptionsTest.java

+8
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,16 @@ static <T> Test<T> create(SocketOption<T> option, T value) {
8484
Test.create(StandardSocketOptions.SO_RCVBUF, Integer.valueOf(8 * 100)),
8585
Test.create(StandardSocketOptions.SO_REUSEADDR, Boolean.FALSE),
8686
Test.create(StandardSocketOptions.SO_REUSEPORT, Boolean.FALSE),
87+
Test.create(StandardSocketOptions.SO_BROADCAST, Boolean.FALSE),
88+
Test.create(StandardSocketOptions.SO_BROADCAST, Boolean.TRUE),
8789
Test.create(StandardSocketOptions.IP_TOS, Integer.valueOf(0)), // lower-bound
8890
Test.create(StandardSocketOptions.IP_TOS, Integer.valueOf(100)),
8991
Test.create(StandardSocketOptions.IP_TOS, Integer.valueOf(255)) //upper-bound
9092
};
9193

9294
static Test<?>[] multicastSocketTests = new Test<?>[] {
95+
Test.create(StandardSocketOptions.SO_BROADCAST, Boolean.FALSE),
96+
Test.create(StandardSocketOptions.SO_BROADCAST, Boolean.TRUE),
9397
Test.create(StandardSocketOptions.IP_MULTICAST_IF, getNetworkInterface()),
9498
Test.create(StandardSocketOptions.IP_MULTICAST_TTL, Integer.valueOf(0)), // lower-bound
9599
Test.create(StandardSocketOptions.IP_MULTICAST_TTL, Integer.valueOf(10)),
@@ -285,6 +289,8 @@ static Object legacyGetOption(Class<?> type, Object s, Object option) throws Exc
285289
return Integer.valueOf(socket.getReceiveBufferSize());
286290
} else if (option.equals(StandardSocketOptions.SO_REUSEADDR)) {
287291
return Boolean.valueOf(socket.getReuseAddress());
292+
} else if (option.equals(StandardSocketOptions.SO_BROADCAST)) {
293+
return Boolean.valueOf(socket.getBroadcast());
288294
} else if (option.equals(StandardSocketOptions.SO_REUSEPORT) && reuseport) {
289295
return Boolean.valueOf(socket.getOption(StandardSocketOptions.SO_REUSEPORT));
290296
} else if (option.equals(StandardSocketOptions.IP_TOS)) {
@@ -304,6 +310,8 @@ static Object legacyGetOption(Class<?> type, Object s, Object option) throws Exc
304310
return Integer.valueOf(socket.getReceiveBufferSize());
305311
} else if (option.equals(StandardSocketOptions.SO_REUSEADDR)) {
306312
return Boolean.valueOf(socket.getReuseAddress());
313+
} else if (option.equals(StandardSocketOptions.SO_BROADCAST)) {
314+
return Boolean.valueOf(socket.getBroadcast());
307315
} else if (option.equals(StandardSocketOptions.SO_REUSEPORT) && reuseport) {
308316
return Boolean.valueOf(socket.getOption(StandardSocketOptions.SO_REUSEPORT));
309317
} else if (option.equals(StandardSocketOptions.IP_TOS)) {

0 commit comments

Comments
 (0)
Please sign in to comment.