Package org.apache.tomcat.util.net
Class AbstractJsseEndpoint<S,U>
java.lang.Object
org.apache.tomcat.util.net.AbstractEndpoint<S,U>
org.apache.tomcat.util.net.AbstractJsseEndpoint<S,U>
- Direct Known Subclasses:
Nio2Endpoint
,NioEndpoint
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.tomcat.util.net.AbstractEndpoint
AbstractEndpoint.BindState, AbstractEndpoint.Handler<S>
-
Field Summary
Fields inherited from class org.apache.tomcat.util.net.AbstractEndpoint
acceptor, acceptorThreadCount, acceptorThreadPriority, attributes, connections, internalExecutor, negotiableProtocols, paused, processorCache, running, sm, socketProperties, sslHostConfigs, threadPriority
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
createSSLContext
(SSLHostConfig sslHostConfig) Create the SSLContext for the given SSLHostConfig.protected SSLEngine
createSSLEngine
(String sniHostName, List<Cipher> clientRequestedCiphers, List<String> clientRequestedApplicationProtocols) protected final InetSocketAddress
Obtain the network address the server socket is bound to.protected abstract NetworkChannel
int
void
init()
protected void
boolean
Identifies if the endpoint supports ALPN.protected void
setDefaultSslHostConfig
(SSLHostConfig sslHostConfig) void
setSniParseLimit
(int sniParseLimit) void
void
unbind()
Methods inherited from class org.apache.tomcat.util.net.AbstractEndpoint
addNegotiatedProtocol, addSslHostConfig, addSslHostConfig, awaitConnectionsClose, bind, closeServerSocketGraceful, closeSocket, countDownConnection, countUpOrAwaitConnection, createExecutor, createSocketProcessor, destroy, destroySocket, destroySsl, doCloseServerSocket, findSslHostConfigs, generateCertificateDebug, getAcceptCount, getAcceptorThreadCount, getAcceptorThreadPriority, getAddress, getAttribute, getBacklog, getBindOnInit, getBindState, getConnectionCount, getConnectionLinger, getConnections, getConnectionTimeout, getCurrentThreadCount, getCurrentThreadsBusy, getDaemon, getDefaultSSLHostConfigName, getDeferAccept, getDomain, getExecutor, getExecutorTerminationTimeoutMillis, getHandler, getKeepAliveTimeout, getLocalPort, getLog, getLogCertificate, getMaxConnections, getMaxHeaderCount, getMaxKeepAliveRequests, getMaxThreads, getMinSpareThreads, getName, getPort, getPortOffset, getPortWithOffset, getProperty, getSocketProperties, getSoLinger, getSoTimeout, getSSLHostConfig, getTcpNoDelay, getThreadPriority, getUseAsyncIO, getUseSendfile, getUseVirtualThreads, hasNegotiableProtocols, initializeConnectionLatch, isPaused, isRunning, isSSLEnabled, logCertificate, pause, processSocket, releaseConnectionLatch, releaseSSLContext, reloadSslHostConfig, reloadSslHostConfigs, removeSslHostConfig, resume, serverSocketAccept, setAcceptCount, setAcceptorThreadCount, setAcceptorThreadPriority, setAddress, setAttribute, setBacklog, setBindOnInit, setConnectionLinger, setConnectionTimeout, setDaemon, setDefaultSSLHostConfigName, setDomain, setExecutor, setExecutorTerminationTimeoutMillis, setHandler, setKeepAliveTimeout, setMaxConnections, setMaxHeaderCount, setMaxKeepAliveRequests, setMaxThreads, setMinSpareThreads, setName, setPort, setPortOffset, setProperty, setSocketOptions, setSoLinger, setSoTimeout, setSSLEnabled, setTcpNoDelay, setThreadPriority, setUseAsyncIO, setUseSendfile, setUseVirtualThreads, shutdownExecutor, start, startAcceptorThread, startInternal, stop, stopInternal, toTimeout, unlockAccept
-
Constructor Details
-
AbstractJsseEndpoint
public AbstractJsseEndpoint()
-
-
Method Details
-
getSslImplementationName
-
setSslImplementationName
-
getSslImplementation
-
getSniParseLimit
public int getSniParseLimit() -
setSniParseLimit
public void setSniParseLimit(int sniParseLimit) -
initialiseSsl
- Throws:
Exception
-
createSSLContext
Description copied from class:AbstractEndpoint
Create the SSLContext for the given SSLHostConfig.- Specified by:
createSSLContext
in classAbstractEndpoint<S,
U> - Parameters:
sslHostConfig
- The SSLHostConfig for which the SSLContext should be created- Throws:
IllegalArgumentException
-
createSSLEngine
-
isAlpnSupported
public boolean isAlpnSupported()Description copied from class:AbstractEndpoint
Identifies if the endpoint supports ALPN. Note that a return value oftrue
implies thatAbstractEndpoint.isSSLEnabled()
will also returntrue
.- Specified by:
isAlpnSupported
in classAbstractEndpoint<S,
U> - Returns:
true
if the endpoint supports ALPN in its current configuration, otherwisefalse
.
-
init
- Overrides:
init
in classAbstractEndpoint<S,
U> - Throws:
Exception
-
unbind
- Specified by:
unbind
in classAbstractEndpoint<S,
U> - Throws:
Exception
-
getServerSocket
-
getLocalAddress
Description copied from class:AbstractEndpoint
Obtain the network address the server socket is bound to. This primarily exists to enable the correct address to be used when unlocking the server socket since it removes the guess-work involved if no address is specifically set.- Specified by:
getLocalAddress
in classAbstractEndpoint<S,
U> - Returns:
- The network address that the server socket is listening on or null if the server socket is not currently bound.
- Throws:
IOException
- If there is a problem determining the currently bound socket
-
setDefaultSslHostConfig
- Specified by:
setDefaultSslHostConfig
in classAbstractEndpoint<S,
U>
-