public class RemoteEndpointAwareNettySSLOptions extends NettySSLOptions implements RemoteEndpointAwareSSLOptions
RemoteEndpointAwareSSLOptions
implementation based on Netty's SSL context.
Netty has the ability to use OpenSSL if available, instead of the JDK's built-in engine. This yields better performance.context
Constructor and Description |
---|
RemoteEndpointAwareNettySSLOptions(SslContext context)
Create a new instance from a given context.
|
Modifier and Type | Method and Description |
---|---|
SslHandler |
newSSLHandler(SocketChannel channel)
Creates a new SSL handler for the given Netty channel.
|
SslHandler |
newSSLHandler(SocketChannel channel,
InetSocketAddress remoteEndpoint)
Creates a new SSL handler for the given Netty channel and the given remote endpoint.
|
public RemoteEndpointAwareNettySSLOptions(SslContext context)
context
- the Netty context. SslContextBuilder.forClient()
provides a fluent API to build it.public SslHandler newSSLHandler(SocketChannel channel)
SSLOptions
JdkSSLOptions
and
NettySSLOptions
.newSSLHandler
in interface SSLOptions
newSSLHandler
in class NettySSLOptions
channel
- the channel.public SslHandler newSSLHandler(SocketChannel channel, InetSocketAddress remoteEndpoint)
RemoteEndpointAwareSSLOptions
RemoteEndpointAwareJdkSSLOptions
and RemoteEndpointAwareNettySSLOptions
.newSSLHandler
in interface RemoteEndpointAwareSSLOptions
channel
- the channel.remoteEndpoint
- the remote endpoint address.SslHandler
.Copyright © 2012–2017. All rights reserved.