Uses of Class
org.jboss.netty.handler.ssl.SslBufferPool
-
Packages that use SslBufferPool Package Description org.jboss.netty.handler.ssl -
-
Uses of SslBufferPool in org.jboss.netty.handler.ssl
Methods in org.jboss.netty.handler.ssl that return SslBufferPool Modifier and Type Method Description SslBufferPool
SslContext. bufferPool()
static SslBufferPool
SslHandler. getDefaultBufferPool()
Returns the defaultSslBufferPool
used when no pool is specified in the constructor.Methods in org.jboss.netty.handler.ssl with parameters of type SslBufferPool Modifier and Type Method Description static SslContext
SslContext. newClientContext(SslBufferPool bufPool, File certChainFile, TrustManagerFactory trustManagerFactory, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout)
Creates a new client-sideSslContext
.static SslContext
SslContext. newClientContext(SslProvider provider, SslBufferPool bufPool, File certChainFile, TrustManagerFactory trustManagerFactory, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout)
Creates a new client-sideSslContext
.static SslContext
SslContext. newServerContext(SslBufferPool bufPool, File certChainFile, File keyFile, String keyPassword, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout)
Creates a new server-sideSslContext
.static SslContext
SslContext. newServerContext(SslProvider provider, SslBufferPool bufPool, File certChainFile, File keyFile, String keyPassword, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout)
Creates a new server-sideSslContext
.Constructors in org.jboss.netty.handler.ssl with parameters of type SslBufferPool Constructor Description JdkSslClientContext(SslBufferPool bufPool, File certChainFile, TrustManagerFactory trustManagerFactory, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout)
Creates a new instance.JdkSslServerContext(SslBufferPool bufPool, File certChainFile, File keyFile, String keyPassword, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout)
Creates a new instance.OpenSslEngine(long sslCtx, SslBufferPool bufPool, String fallbackApplicationProtocol)
Creates a new instanceOpenSslServerContext(SslBufferPool bufPool, File certChainFile, File keyFile, String keyPassword, Iterable<String> ciphers, Iterable<String> nextProtocols, long sessionCacheSize, long sessionTimeout)
Creates a new instance.SslHandler(SSLEngine engine, SslBufferPool bufferPool)
Creates a new instance.SslHandler(SSLEngine engine, SslBufferPool bufferPool, boolean startTls)
Creates a new instance.SslHandler(SSLEngine engine, SslBufferPool bufferPool, boolean startTls, Timer timer, long handshakeTimeoutInMillis)
Creates a new instance.
-