src/java.base/unix/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, 2011, 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
    67                 return result;
    67                 return result;
    68             } catch (Exception e) {
    68             } catch (Exception e) {
    69                 throw new SocketException("can't instantiate DatagramSocketImpl");
    69                 throw new SocketException("can't instantiate DatagramSocketImpl");
    70             }
    70             }
    71         } else {
    71         } else {
    72             return new java.net.PlainDatagramSocketImpl();
    72             return new java.net.PlainDatagramSocketImpl(isMulticast);
    73         }
    73         }
    74     }
    74     }
    75 }
    75 }