28
28
import java .io .FileDescriptor ;
29
29
import java .net .SocketException ;
30
30
import java .net .SocketOption ;
31
+ import java .net .StandardProtocolFamily ;
31
32
import java .security .AccessController ;
32
33
import java .security .PrivilegedAction ;
33
34
import java .util .Collections ;
@@ -209,6 +210,9 @@ private ExtendedSocketOptions() { }
209
210
* sizes to the {@link java.net.NetworkInterface#getMTU() local MTU}. Depending
210
211
* on the implementation and the network interface, packets larger than the MTU
211
212
* may be sent or dropped silently or dropped with an exception thrown.
213
+ * For {@link StandardProtocolFamily#INET6 IPv6} sockets it is
214
+ * system dependent whether the option also applies to datagrams
215
+ * sent to IPv4 addresses.
212
216
*
213
217
* @apiNote
214
218
* For IPv4 this option sets the DF (Do not Fragment) flag in the IP packet
@@ -263,10 +267,9 @@ static Set<SocketOption<?>> options() {
263
267
new sun .net .ext .ExtendedSocketOptions (extendedOptions ) {
264
268
265
269
@ Override
266
- @ SuppressWarnings ("removal" )
267
270
public void setOption (FileDescriptor fd ,
268
271
SocketOption <?> option ,
269
- Object value )
272
+ Object value , boolean isIPv6 )
270
273
throws SocketException
271
274
{
272
275
if (fd == null || !fd .valid ())
@@ -277,7 +280,7 @@ public void setOption(FileDescriptor fd,
277
280
} else if (option == TCP_KEEPCOUNT ) {
278
281
setTcpkeepAliveProbes (fd , (Integer ) value );
279
282
} else if (option == IP_DONTFRAGMENT ) {
280
- setIpDontFragment (fd , (Boolean ) value );
283
+ setIpDontFragment (fd , (Boolean ) value , isIPv6 );
281
284
} else if (option == TCP_KEEPIDLE ) {
282
285
setTcpKeepAliveTime (fd , (Integer ) value );
283
286
} else if (option == TCP_KEEPINTERVAL ) {
@@ -295,9 +298,8 @@ public void setOption(FileDescriptor fd,
295
298
}
296
299
297
300
@ Override
298
- @ SuppressWarnings ("removal" )
299
301
public Object getOption (FileDescriptor fd ,
300
- SocketOption <?> option )
302
+ SocketOption <?> option , boolean isIPv6 )
301
303
throws SocketException
302
304
{
303
305
if (fd == null || !fd .valid ())
@@ -308,7 +310,7 @@ public Object getOption(FileDescriptor fd,
308
310
} else if (option == TCP_KEEPCOUNT ) {
309
311
return getTcpkeepAliveProbes (fd );
310
312
} else if (option == IP_DONTFRAGMENT ) {
311
- return getIpDontFragment (fd );
313
+ return getIpDontFragment (fd , isIPv6 );
312
314
} else if (option == TCP_KEEPIDLE ) {
313
315
return getTcpKeepAliveTime (fd );
314
316
} else if (option == TCP_KEEPINTERVAL ) {
@@ -352,9 +354,9 @@ private static void setTcpKeepAliveTime(FileDescriptor fd, int value)
352
354
platformSocketOptions .setTcpKeepAliveTime (fdAccess .get (fd ), value );
353
355
}
354
356
355
- private static void setIpDontFragment (FileDescriptor fd , boolean value )
357
+ private static void setIpDontFragment (FileDescriptor fd , boolean value , boolean isIPv6 )
356
358
throws SocketException {
357
- platformSocketOptions .setIpDontFragment (fdAccess .get (fd ), value );
359
+ platformSocketOptions .setIpDontFragment (fdAccess .get (fd ), value , isIPv6 );
358
360
}
359
361
360
362
private static void setTcpKeepAliveIntvl (FileDescriptor fd , int value )
@@ -366,8 +368,8 @@ private static int getTcpkeepAliveProbes(FileDescriptor fd) throws SocketExcepti
366
368
return platformSocketOptions .getTcpkeepAliveProbes (fdAccess .get (fd ));
367
369
}
368
370
369
- private static boolean getIpDontFragment (FileDescriptor fd ) throws SocketException {
370
- return platformSocketOptions .getIpDontFragment (fdAccess .get (fd ));
371
+ private static boolean getIpDontFragment (FileDescriptor fd , boolean isIPv6 ) throws SocketException {
372
+ return platformSocketOptions .getIpDontFragment (fdAccess .get (fd ), isIPv6 );
371
373
}
372
374
373
375
private static int getTcpKeepAliveTime (FileDescriptor fd ) throws SocketException {
@@ -462,11 +464,11 @@ void setTcpKeepAliveIntvl(int fd, final int value) throws SocketException {
462
464
throw new UnsupportedOperationException ("unsupported TCP_KEEPINTVL option" );
463
465
}
464
466
465
- void setIpDontFragment (int fd , final boolean value ) throws SocketException {
467
+ void setIpDontFragment (int fd , final boolean value , boolean isIPv6 ) throws SocketException {
466
468
throw new UnsupportedOperationException ("unsupported IP_DONTFRAGMENT option" );
467
469
}
468
470
469
- boolean getIpDontFragment (int fd ) throws SocketException {
471
+ boolean getIpDontFragment (int fd , boolean isIPv6 ) throws SocketException {
470
472
throw new UnsupportedOperationException ("unsupported IP_DONTFRAGMENT option" );
471
473
}
472
474
0 commit comments