jdk/src/share/classes/sun/security/ssl/BaseSSLSocketImpl.java
author lana
Tue, 23 Oct 2012 11:29:53 -0700
changeset 14229 40fbffe104bd
parent 14194 971f46db533d
child 14664 e71aa0962e70
permissions -rw-r--r--
Merge
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
     2
 * Copyright (c) 2002, 2012, 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.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import javax.net.ssl.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * Abstract base class for SSLSocketImpl. Its purpose is to house code with
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * no SSL related logic (or no logic at all). This makes SSLSocketImpl shorter
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * and easier to read. It contains a few constants and static methods plus
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * overridden java.net.Socket methods.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * Methods are defined final to ensure that they are not accidentally
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * overridden in SSLSocketImpl.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * @see javax.net.ssl.SSLSocket
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * @see SSLSocketImpl
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
abstract class BaseSSLSocketImpl extends SSLSocket {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
     * Normally "self" is "this" ... but not when this connection is
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
     * layered over a preexisting socket.  If we're using an existing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
     * socket, we delegate some actions to it.  Else, we delegate
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
     * instead to "super".  This is important to ensure that we don't
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
     * recurse infinitely ... e.g. close() calling itself, or doing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
     * I/O in terms of our own streams.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
     */
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    57
    final private Socket self;
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    58
    final private InputStream consumedInput;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    BaseSSLSocketImpl() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        this.self = this;
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    63
        this.consumedInput = null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    BaseSSLSocketImpl(Socket socket) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
        this.self = socket;
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    69
        this.consumedInput = null;
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    70
    }
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
    BaseSSLSocketImpl(Socket socket, InputStream consumed) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    73
        super();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    74
        this.self = socket;
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
    75
        this.consumedInput = consumed;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    // CONSTANTS AND STATIC METHODS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
     * TLS requires that a close_notify warning alert is sent before the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
     * connection is closed in order to avoid truncation attacks. Some
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * implementations (MS IIS and others) don't do that. The property
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * below controls whether we accept that or treat it as an error.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
     * The default is "false", i.e. tolerate the broken behavior.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    private final static String PROP_NAME =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
                                "com.sun.net.ssl.requireCloseNotify";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    final static boolean requireCloseNotify =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
                                Debug.getBooleanProperty(PROP_NAME, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    // MISC SOCKET METHODS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     * Returns the unique {@link java.nio.SocketChannel SocketChannel} object
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
     * associated with this socket, if any.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
     * @see java.net.Socket#getChannel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    public final SocketChannel getChannel() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
            return super.getChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            return self.getChannel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
     * Binds the address to the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
     * @see java.net.Socket#bind
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    public void bind(SocketAddress bindpoint) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
         * Bind to this socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            super.bind(bindpoint);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            // If we're binding on a layered socket...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            throw new IOException(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                "Underlying socket should already be connected");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * Returns the address of the endpoint this socket is connected to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     * @see java.net.Socket#getLocalSocketAddress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    public SocketAddress getLocalSocketAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
            return super.getLocalSocketAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
            return self.getLocalSocketAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * Returns the address of the endpoint this socket is connected to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * @see java.net.Socket#getRemoteSocketAddress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    public SocketAddress getRemoteSocketAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            return super.getRemoteSocketAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
            return self.getRemoteSocketAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     * Connects this socket to the server.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
     * This method is either called on an unconnected SSLSocketImpl by the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
     * application, or it is called in the constructor of a regular
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
     * SSLSocketImpl. If we are layering on top on another socket, then
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
     * this method should not be called, because we assume that the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
     * underlying socket is already connected by the time it is passed to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
     * us.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
     * @param   endpoint the <code>SocketAddress</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
     * @throws  IOException if an error occurs during the connection
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    public final void connect(SocketAddress endpoint) throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        connect(endpoint, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
     * Returns the connection state of the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
     * @see java.net.Socket#isConnected
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
    public final boolean isConnected() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            return super.isConnected();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            return self.isConnected();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
     * Returns the binding state of the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
     * @see java.net.Socket#isBound
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    public final boolean isBound() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
            return super.isBound();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            return self.isBound();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    // CLOSE RELATED METHODS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
     * The semantics of shutdownInput is not supported in TLS 1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
     * spec. Thus when the method is called on an SSL socket, an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
     * UnsupportedOperationException will be thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     * @throws UnsupportedOperationException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    public final void shutdownInput() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        throw new UnsupportedOperationException("The method shutdownInput()" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
                   " is not supported in SSLSocket");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * The semantics of shutdownOutput is not supported in TLS 1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * spec. Thus when the method is called on an SSL socket, an
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     * UnsupportedOperationException will be thrown.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
     * @throws UnsupportedOperationException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    public final void shutdownOutput() throws IOException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        throw new UnsupportedOperationException("The method shutdownOutput()" +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
                   " is not supported in SSLSocket");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * Returns the input state of the socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     * @see java.net.Socket#isInputShutdown
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
    public final boolean isInputShutdown() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
            return super.isInputShutdown();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            return self.isInputShutdown();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     * Returns the output state of the socket
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     * @see java.net.Socket#isOutputShutdown
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    public final boolean isOutputShutdown() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
            return super.isOutputShutdown();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            return self.isOutputShutdown();
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
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
     * Ensures that the SSL connection is closed down as cleanly
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
     * as possible, in case the application forgets to do so.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
     * This allows SSL connections to be implicitly reclaimed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
     * rather than forcing them to be explicitly reclaimed at
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
     * the penalty of prematurly killing SSL sessions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    protected final void finalize() throws Throwable {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
            close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        } catch (IOException e1) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
                if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
                    super.close();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            } catch (IOException e2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
                // ignore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        } finally {
1580
9af5946d4060 6745052: SLServerSocket file descriptor leak
xuelei
parents: 2
diff changeset
   267
            // We called close on the underlying socket above to
9af5946d4060 6745052: SLServerSocket file descriptor leak
xuelei
parents: 2
diff changeset
   268
            // make doubly sure all resources got released.  We
9af5946d4060 6745052: SLServerSocket file descriptor leak
xuelei
parents: 2
diff changeset
   269
            // don't finalize self in the case of overlain sockets,
9af5946d4060 6745052: SLServerSocket file descriptor leak
xuelei
parents: 2
diff changeset
   270
            // that's a different object which the GC will finalize
9af5946d4060 6745052: SLServerSocket file descriptor leak
xuelei
parents: 2
diff changeset
   271
            // separately.
9af5946d4060 6745052: SLServerSocket file descriptor leak
xuelei
parents: 2
diff changeset
   272
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            super.finalize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
    // GET ADDRESS METHODS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
     * Returns the address of the remote peer for this connection.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
    public final InetAddress getInetAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
            return super.getInetAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
            return self.getInetAddress();
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
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
     * Gets the local address to which the socket is bound.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
     * @return the local address to which the socket is bound.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
     * @since   JDK1.1
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
    public final InetAddress getLocalAddress() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
            return super.getLocalAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            return self.getLocalAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        }
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
     * Returns the number of the remote port that this connection uses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    public final int getPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
            return super.getPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
            return self.getPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * Returns the number of the local port that this connection uses.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    public final int getLocalPort() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
            return super.getLocalPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
            return self.getLocalPort();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
    // SOCKET OPTION METHODS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
     * Enables or disables the Nagle optimization.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
     * @see java.net.Socket#setTcpNoDelay
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    public final void setTcpNoDelay(boolean value) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            super.setTcpNoDelay(value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
            self.setTcpNoDelay(value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
     * Returns true if the Nagle optimization is disabled.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
     * relates to low-level buffering of TCP traffic, delaying the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
     * traffic to promote better throughput.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
     * @see java.net.Socket#getTcpNoDelay
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
    public final boolean getTcpNoDelay() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
            return super.getTcpNoDelay();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            return self.getTcpNoDelay();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
     * Assigns the socket's linger timeout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
     * @see java.net.Socket#setSoLinger
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
    public final void setSoLinger(boolean flag, int linger)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
            throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
            super.setSoLinger(flag, linger);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
            self.setSoLinger(flag, linger);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
     * Returns the socket's linger timeout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
     * @see java.net.Socket#getSoLinger
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    public final int getSoLinger() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
            return super.getSoLinger();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
            return self.getSoLinger();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
     * Send one byte of urgent data on the socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
     * @see java.net.Socket#sendUrgentData
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
     * At this point, there seems to be no specific requirement to support
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
     * this for an SSLSocket. An implementation can be provided if a need
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
     * arises in future.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    public final void sendUrgentData(int data) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        throw new SocketException("This method is not supported "
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
                        + "by SSLSockets");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     * Enable/disable OOBINLINE (receipt of TCP urgent data) By default, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
     * option is disabled and TCP urgent data received on a socket is silently
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
     * discarded.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
     * @see java.net.Socket#setOOBInline
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
     * Setting OOBInline does not have any effect on SSLSocket,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
     * since currently we don't support sending urgent data.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    public final void setOOBInline(boolean on) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        throw new SocketException("This method is ineffective, since"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
                + " sending urgent data is not supported by SSLSockets");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
     * Tests if OOBINLINE is enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
     * @see java.net.Socket#getOOBInline
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
    public final boolean getOOBInline() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
        throw new SocketException("This method is ineffective, since"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                + " sending urgent data is not supported by SSLSockets");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
     * Returns the socket timeout.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
     * @see java.net.Socket#getSoTimeout
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    public final int getSoTimeout() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
            return super.getSoTimeout();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
            return self.getSoTimeout();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    public final void setSendBufferSize(int size) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
            super.setSendBufferSize(size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
            self.setSendBufferSize(size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
90ce3da70b43 Initial load
duke
parents:
diff changeset
   438
    public final int getSendBufferSize() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   439
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   440
            return super.getSendBufferSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   441
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   442
            return self.getSendBufferSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
    public final void setReceiveBufferSize(int size) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
            super.setReceiveBufferSize(size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
            self.setReceiveBufferSize(size);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
    public final int getReceiveBufferSize() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
            return super.getReceiveBufferSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
            return self.getReceiveBufferSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
     * Enable/disable SO_KEEPALIVE.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
     * @see java.net.Socket#setKeepAlive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
    public final void setKeepAlive(boolean on) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
            super.setKeepAlive(on);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
            self.setKeepAlive(on);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
     * Tests if SO_KEEPALIVE is enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
     * @see java.net.Socket#getKeepAlive
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
    public final boolean getKeepAlive() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
            return super.getKeepAlive();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
            return self.getKeepAlive();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * Sets traffic class or type-of-service octet in the IP header for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     * packets sent from this Socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
     * @see java.net.Socket#setTrafficClass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
    public final void setTrafficClass(int tc) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
            super.setTrafficClass(tc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
            self.setTrafficClass(tc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
     * Gets traffic class or type-of-service in the IP header for packets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
     * sent from this Socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
     * @see java.net.Socket#getTrafficClass
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
    public final int getTrafficClass() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            return super.getTrafficClass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
            return self.getTrafficClass();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
     * Enable/disable SO_REUSEADDR.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
     * @see java.net.Socket#setReuseAddress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
    public final void setReuseAddress(boolean on) throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
            super.setReuseAddress(on);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
            self.setReuseAddress(on);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
     * Tests if SO_REUSEADDR is enabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
     * @see java.net.Socket#getReuseAddress
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
    public final boolean getReuseAddress() throws SocketException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
            return super.getReuseAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
            return self.getReuseAddress();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
     * Sets performance preferences for this socket.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
     * @see java.net.Socket#setPerformancePreferences(int, int, int)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    public void setPerformancePreferences(int connectionTime,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
            int latency, int bandwidth) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
        if (self == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
            super.setPerformancePreferences(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
                connectionTime, latency, bandwidth);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
            self.setPerformancePreferences(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
                connectionTime, latency, bandwidth);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
14194
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   552
    @Override
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   553
    public String toString() {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   554
        if (self == this) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   555
            return super.toString();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   556
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   557
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   558
        return self.toString();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   559
    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   560
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   561
    @Override
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   562
    public InputStream getInputStream() throws IOException {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   563
        if (self == this) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   564
            return super.getInputStream();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   565
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   566
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   567
        if (consumedInput != null) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   568
            return new SequenceInputStream(consumedInput,
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   569
                                                self.getInputStream());
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   570
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   571
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   572
        return self.getInputStream();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   573
    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   574
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   575
    @Override
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   576
    public OutputStream getOutputStream() throws IOException {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   577
        if (self == this) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   578
            return super.getOutputStream();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   579
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   580
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   581
        return self.getOutputStream();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   582
    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   583
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   584
    @Override
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   585
    public synchronized void close() throws IOException {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   586
        if (self == this) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   587
            super.close();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   588
        } else {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   589
            self.close();
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   590
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   591
    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   592
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   593
    @Override
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   594
    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
   595
        if (self == this) {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   596
            super.setSoTimeout(timeout);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   597
        } else {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   598
            self.setSoTimeout(timeout);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   599
        }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   600
    }
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   601
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   602
    boolean isLayered() {
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   603
        return (self != this);
971f46db533d 7068321: Support TLS Server Name Indication (SNI) Extension in JSSE Server
xuelei
parents: 5506
diff changeset
   604
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
}