src/java.base/share/classes/sun/security/ssl/BaseSSLSocketImpl.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 44534 jdk/src/java.base/share/classes/sun/security/ssl/BaseSSLSocketImpl.java@a076dffbc2c1
child 50768 68fa3d4026ea
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
44534
a076dffbc2c1 8165641: Deprecate Object.finalize
rriggs
parents: 32649
diff changeset
     2
 * Copyright (c) 2002, 2017, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1580
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1580
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1580
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1580
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1580
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.security.ssl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.io.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.nio.channels.SocketChannel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.net.*;
23883
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
    31
import java.util.Set;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import javax.net.ssl.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * Abstract base class for SSLSocketImpl. Its purpose is to house code with
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * no SSL related logic (or no logic at all). This makes SSLSocketImpl shorter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * and easier to read. It contains a few constants and static methods plus
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * overridden java.net.Socket methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * Methods are defined final to ensure that they are not accidentally
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * overridden in SSLSocketImpl.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @see javax.net.ssl.SSLSocket
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * @see SSLSocketImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
abstract class BaseSSLSocketImpl extends SSLSocket {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     * Normally "self" is "this" ... but not when this connection is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * layered over a preexisting socket.  If we're using an existing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     * socket, we delegate some actions to it.  Else, we delegate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * instead to "super".  This is important to ensure that we don't
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * recurse infinitely ... e.g. close() calling itself, or doing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     * I/O in terms of our own streams.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
    58
    private final Socket self;
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
    59
    private final InputStream consumedInput;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    BaseSSLSocketImpl() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
        this.self = this;
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    64
        this.consumedInput = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    BaseSSLSocketImpl(Socket socket) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        this.self = socket;
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    70
        this.consumedInput = null;
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    71
    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    72
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    73
    BaseSSLSocketImpl(Socket socket, InputStream consumed) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    74
        super();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    75
        this.self = socket;
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    76
        this.consumedInput = consumed;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    // CONSTANTS AND STATIC METHODS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * TLS requires that a close_notify warning alert is sent before the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * connection is closed in order to avoid truncation attacks. Some
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * implementations (MS IIS and others) don't do that. The property
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     * below controls whether we accept that or treat it as an error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * The default is "false", i.e. tolerate the broken behavior.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     */
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
    91
    private static final String PROP_NAME =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
                                "com.sun.net.ssl.requireCloseNotify";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
32649
2ee9017c7597 8136583: Core libraries should use blessed modifier order
martin
parents: 25859
diff changeset
    94
    static final boolean requireCloseNotify =
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                                Debug.getBooleanProperty(PROP_NAME, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    // MISC SOCKET METHODS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * Returns the unique {@link java.nio.SocketChannel SocketChannel} object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * associated with this socket, if any.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     * @see java.net.Socket#getChannel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   106
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    public final SocketChannel getChannel() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            return super.getChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            return self.getChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * Binds the address to the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * @see java.net.Socket#bind
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   119
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    public void bind(SocketAddress bindpoint) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
         * Bind to this socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            super.bind(bindpoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            // If we're binding on a layered socket...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            throw new IOException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
                "Underlying socket should already be connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
     * Returns the address of the endpoint this socket is connected to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
     * @see java.net.Socket#getLocalSocketAddress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   137
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    public SocketAddress getLocalSocketAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            return super.getLocalSocketAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            return self.getLocalSocketAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * Returns the address of the endpoint this socket is connected to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * @see java.net.Socket#getRemoteSocketAddress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   150
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    public SocketAddress getRemoteSocketAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            return super.getRemoteSocketAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
            return self.getRemoteSocketAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * Connects this socket to the server.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * This method is either called on an unconnected SSLSocketImpl by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     * application, or it is called in the constructor of a regular
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * SSLSocketImpl. If we are layering on top on another socket, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * this method should not be called, because we assume that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     * underlying socket is already connected by the time it is passed to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
     * us.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
     * @param   endpoint the <code>SocketAddress</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
     * @throws  IOException if an error occurs during the connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   172
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    public final void connect(SocketAddress endpoint) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        connect(endpoint, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
     * Returns the connection state of the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
     * @see java.net.Socket#isConnected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   181
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    public final boolean isConnected() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            return super.isConnected();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            return self.isConnected();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
     * Returns the binding state of the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
     * @see java.net.Socket#isBound
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   194
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    public final boolean isBound() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
            return super.isBound();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
            return self.isBound();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    // CLOSE RELATED METHODS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     * The semantics of shutdownInput is not supported in TLS 1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
     * spec. Thus when the method is called on an SSL socket, an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
     * UnsupportedOperationException will be thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * @throws UnsupportedOperationException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   214
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    public final void shutdownInput() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        throw new UnsupportedOperationException("The method shutdownInput()" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
                   " is not supported in SSLSocket");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * The semantics of shutdownOutput is not supported in TLS 1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * spec. Thus when the method is called on an SSL socket, an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * UnsupportedOperationException will be thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * @throws UnsupportedOperationException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   227
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    public final void shutdownOutput() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        throw new UnsupportedOperationException("The method shutdownOutput()" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
                   " is not supported in SSLSocket");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
     * Returns the input state of the socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
     * @see java.net.Socket#isInputShutdown
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   238
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    public final boolean isInputShutdown() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
            return super.isInputShutdown();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
            return self.isInputShutdown();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     * Returns the output state of the socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * @see java.net.Socket#isOutputShutdown
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   251
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
    public final boolean isOutputShutdown() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
            return super.isOutputShutdown();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
            return self.isOutputShutdown();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     * Ensures that the SSL connection is closed down as cleanly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * as possible, in case the application forgets to do so.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     * This allows SSL connections to be implicitly reclaimed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
     * rather than forcing them to be explicitly reclaimed at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
     * the penalty of prematurly killing SSL sessions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   267
    @Override
44534
a076dffbc2c1 8165641: Deprecate Object.finalize
rriggs
parents: 32649
diff changeset
   268
    @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    protected final void finalize() throws Throwable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
            close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        } catch (IOException e1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
                if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
                    super.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
            } catch (IOException e2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
                // ignore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
        } finally {
1580
9af5946d4060 6745052: SLServerSocket file descriptor leak
xuelei
parents: 2
diff changeset
   281
            // We called close on the underlying socket above to
9af5946d4060 6745052: SLServerSocket file descriptor leak
xuelei
parents: 2
diff changeset
   282
            // make doubly sure all resources got released.  We
9af5946d4060 6745052: SLServerSocket file descriptor leak
xuelei
parents: 2
diff changeset
   283
            // don't finalize self in the case of overlain sockets,
9af5946d4060 6745052: SLServerSocket file descriptor leak
xuelei
parents: 2
diff changeset
   284
            // that's a different object which the GC will finalize
9af5946d4060 6745052: SLServerSocket file descriptor leak
xuelei
parents: 2
diff changeset
   285
            // separately.
9af5946d4060 6745052: SLServerSocket file descriptor leak
xuelei
parents: 2
diff changeset
   286
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
            super.finalize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
    // GET ADDRESS METHODS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * Returns the address of the remote peer for this connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   298
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    public final InetAddress getInetAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
            return super.getInetAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            return self.getInetAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     * Gets the local address to which the socket is bound.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * @return the local address to which the socket is bound.
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 23883
diff changeset
   311
     * @since   1.1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   313
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    public final InetAddress getLocalAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
            return super.getLocalAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
            return self.getLocalAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
     * Returns the number of the remote port that this connection uses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   325
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    public final int getPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
            return super.getPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
            return self.getPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     * Returns the number of the local port that this connection uses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   337
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
    public final int getLocalPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
            return super.getLocalPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
            return self.getLocalPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    // SOCKET OPTION METHODS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
     * Enables or disables the Nagle optimization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
     * @see java.net.Socket#setTcpNoDelay
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   354
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
    public final void setTcpNoDelay(boolean value) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
            super.setTcpNoDelay(value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
            self.setTcpNoDelay(value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
     * Returns true if the Nagle optimization is disabled.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
     * relates to low-level buffering of TCP traffic, delaying the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
     * traffic to promote better throughput.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     * @see java.net.Socket#getTcpNoDelay
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   370
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
    public final boolean getTcpNoDelay() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
            return super.getTcpNoDelay();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
            return self.getTcpNoDelay();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
     * Assigns the socket's linger timeout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
     * @see java.net.Socket#setSoLinger
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   383
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    public final void setSoLinger(boolean flag, int linger)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
            throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
            super.setSoLinger(flag, linger);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
            self.setSoLinger(flag, linger);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
     * Returns the socket's linger timeout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
     * @see java.net.Socket#getSoLinger
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   397
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    public final int getSoLinger() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            return super.getSoLinger();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
            return self.getSoLinger();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
     * Send one byte of urgent data on the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
     * @see java.net.Socket#sendUrgentData
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
     * At this point, there seems to be no specific requirement to support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * this for an SSLSocket. An implementation can be provided if a need
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * arises in future.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   413
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
    public final void sendUrgentData(int data) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
        throw new SocketException("This method is not supported "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                        + "by SSLSockets");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * Enable/disable OOBINLINE (receipt of TCP urgent data) By default, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     * option is disabled and TCP urgent data received on a socket is silently
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
     * discarded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
     * @see java.net.Socket#setOOBInline
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
     * Setting OOBInline does not have any effect on SSLSocket,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
     * since currently we don't support sending urgent data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   427
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
    public final void setOOBInline(boolean on) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
        throw new SocketException("This method is ineffective, since"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
                + " sending urgent data is not supported by SSLSockets");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
     * Tests if OOBINLINE is enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
     * @see java.net.Socket#getOOBInline
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   437
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
    public final boolean getOOBInline() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        throw new SocketException("This method is ineffective, since"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
                + " sending urgent data is not supported by SSLSockets");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
     * Returns the socket timeout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
     * @see java.net.Socket#getSoTimeout
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   447
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    public final int getSoTimeout() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
            return super.getSoTimeout();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
            return self.getSoTimeout();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   456
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    public final void setSendBufferSize(int size) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
            super.setSendBufferSize(size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
            self.setSendBufferSize(size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   465
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
    public final int getSendBufferSize() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
            return super.getSendBufferSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
            return self.getSendBufferSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   474
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
    public final void setReceiveBufferSize(int size) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
            super.setReceiveBufferSize(size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
            self.setReceiveBufferSize(size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   483
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    public final int getReceiveBufferSize() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
            return super.getReceiveBufferSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
            return self.getReceiveBufferSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
     * Enable/disable SO_KEEPALIVE.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
     * @see java.net.Socket#setKeepAlive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   496
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
    public final void setKeepAlive(boolean on) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
            super.setKeepAlive(on);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
            self.setKeepAlive(on);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * Tests if SO_KEEPALIVE is enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     * @see java.net.Socket#getKeepAlive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   509
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    public final boolean getKeepAlive() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
            return super.getKeepAlive();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
            return self.getKeepAlive();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
     * Sets traffic class or type-of-service octet in the IP header for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
     * packets sent from this Socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
     * @see java.net.Socket#setTrafficClass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   523
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
    public final void setTrafficClass(int tc) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
            super.setTrafficClass(tc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
            self.setTrafficClass(tc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
     * Gets traffic class or type-of-service in the IP header for packets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
     * sent from this Socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
     * @see java.net.Socket#getTrafficClass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   537
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    public final int getTrafficClass() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
            return super.getTrafficClass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
            return self.getTrafficClass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
     * Enable/disable SO_REUSEADDR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
     * @see java.net.Socket#setReuseAddress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   550
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
    public final void setReuseAddress(boolean on) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
            super.setReuseAddress(on);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
            self.setReuseAddress(on);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
     * Tests if SO_REUSEADDR is enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
     * @see java.net.Socket#getReuseAddress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   563
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
    public final boolean getReuseAddress() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
            return super.getReuseAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
            return self.getReuseAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
     * Sets performance preferences for this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
     * @see java.net.Socket#setPerformancePreferences(int, int, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
     */
14664
e71aa0962e70 8003950: Adds missing Override annotations and removes unnecessary imports in sun.security.ssl
xuelei
parents: 14194
diff changeset
   577
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
    public void setPerformancePreferences(int connectionTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
            int latency, int bandwidth) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
            super.setPerformancePreferences(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
                connectionTime, latency, bandwidth);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
            self.setPerformancePreferences(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
                connectionTime, latency, bandwidth);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   589
    @Override
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   590
    public String toString() {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   591
        if (self == this) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   592
            return super.toString();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   593
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   594
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   595
        return self.toString();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   596
    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   597
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   598
    @Override
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   599
    public InputStream getInputStream() throws IOException {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   600
        if (self == this) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   601
            return super.getInputStream();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   602
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   603
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   604
        if (consumedInput != null) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   605
            return new SequenceInputStream(consumedInput,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   606
                                                self.getInputStream());
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   607
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   608
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   609
        return self.getInputStream();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   610
    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   611
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   612
    @Override
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   613
    public OutputStream getOutputStream() throws IOException {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   614
        if (self == this) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   615
            return super.getOutputStream();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   616
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   617
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   618
        return self.getOutputStream();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   619
    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   620
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   621
    @Override
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   622
    public synchronized void close() throws IOException {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   623
        if (self == this) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   624
            super.close();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   625
        } else {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   626
            self.close();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   627
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   628
    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   629
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   630
    @Override
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   631
    public synchronized void setSoTimeout(int timeout) throws SocketException {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   632
        if (self == this) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   633
            super.setSoTimeout(timeout);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   634
        } else {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   635
            self.setSoTimeout(timeout);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   636
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   637
    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   638
23883
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   639
    @Override
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   640
    public <T> Socket setOption(SocketOption<T> name,
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   641
            T value) throws IOException {
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   642
        if (self == this) {
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   643
            return super.setOption(name, value);
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   644
        } else {
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   645
            return self.setOption(name, value);
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   646
        }
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   647
    }
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   648
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   649
    @Override
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   650
    public <T> T getOption(SocketOption<T> name) throws IOException {
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   651
        if (self == this) {
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   652
            return super.getOption(name);
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   653
        } else {
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   654
            return self.getOption(name);
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   655
        }
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   656
    }
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   657
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   658
    @Override
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   659
    public Set<SocketOption<?>> supportedOptions() {
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   660
        if (self == this) {
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   661
            return super.supportedOptions();
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   662
        } else {
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   663
            return self.supportedOptions();
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   664
        }
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   665
    }
9434a0a8208f 8040062: Need to add new methods in BaseSSLSocketImpl
xuelei
parents: 14664
diff changeset
   666
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   667
    boolean isLayered() {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   668
        return (self != this);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   669
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
}