src/java.base/windows/classes/java/net/DefaultDatagramSocketImplFactory.java
changeset 59200 a686b67a59d9
parent 47216 71c04702a3d5
equal deleted inserted replaced
59199:a096dfdcabde 59200:a686b67a59d9
     1 /*
     1 /*
     2  * Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2007, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    98             }
    98             }
    99         } else {
    99         } else {
   100             if (!preferIPv4Stack && !isMulticast)
   100             if (!preferIPv4Stack && !isMulticast)
   101                 return new DualStackPlainDatagramSocketImpl(exclusiveBind);
   101                 return new DualStackPlainDatagramSocketImpl(exclusiveBind);
   102             else
   102             else
   103                 return new TwoStacksPlainDatagramSocketImpl(exclusiveBind && !isMulticast);
   103                 return new TwoStacksPlainDatagramSocketImpl(exclusiveBind && !isMulticast, isMulticast);
   104         }
   104         }
   105     }
   105     }
   106 }
   106 }