Package | Description |
---|---|
io.netty.example.factorial | |
io.netty.example.http.cors | |
io.netty.example.http.file | |
io.netty.example.http.helloworld | |
io.netty.example.http.snoop | |
io.netty.example.http.upload | |
io.netty.example.http.websocketx.benchmarkserver |
This package contains a benchmark application for websockets.
|
io.netty.example.http.websocketx.server |
This package contains an example web socket web server.
|
io.netty.example.portunification | |
io.netty.example.securechat | |
io.netty.example.spdy.client |
This package contains an example SPDY HTTP client.
|
io.netty.example.spdy.server |
This package contains an example SPDY HTTP web server.
|
io.netty.example.telnet | |
io.netty.example.worldclock | |
io.netty.handler.ssl | |
io.netty.testsuite.transport.socket |
Test suite classes for socket
|
Constructor and Description |
---|
FactorialClientInitializer(SslContext sslCtx) |
FactorialServerInitializer(SslContext sslCtx) |
Constructor and Description |
---|
HttpCorsServerInitializer(SslContext sslCtx) |
Constructor and Description |
---|
HttpStaticFileServerInitializer(SslContext sslCtx) |
Constructor and Description |
---|
HttpHelloWorldServerInitializer(SslContext sslCtx) |
Constructor and Description |
---|
HttpSnoopClientInitializer(SslContext sslCtx) |
HttpSnoopServerInitializer(SslContext sslCtx) |
Constructor and Description |
---|
HttpUploadClientIntializer(SslContext sslCtx) |
HttpUploadServerInitializer(SslContext sslCtx) |
Constructor and Description |
---|
WebSocketServerInitializer(SslContext sslCtx) |
Constructor and Description |
---|
WebSocketServerInitializer(SslContext sslCtx) |
Constructor and Description |
---|
PortUnificationServerHandler(SslContext sslCtx) |
Constructor and Description |
---|
SecureChatClientInitializer(SslContext sslCtx) |
SecureChatServerInitializer(SslContext sslCtx) |
Constructor and Description |
---|
SpdyClientInitializer(SslContext sslCtx,
HttpResponseClientHandler httpResponseHandler) |
Constructor and Description |
---|
SpdyServerInitializer(SslContext sslCtx) |
Constructor and Description |
---|
TelnetClientInitializer(SslContext sslCtx) |
TelnetServerInitializer(SslContext sslCtx) |
Constructor and Description |
---|
WorldClockClientInitializer(SslContext sslCtx) |
WorldClockServerInitializer(SslContext sslCtx) |
Modifier and Type | Class and Description |
---|---|
class |
JdkSslClientContext
Deprecated.
|
class |
JdkSslContext
An
SslContext which uses JDK's SSL/TLS implementation. |
class |
JdkSslServerContext
Deprecated.
|
class |
OpenSslClientContext
A client-side
SslContext which uses OpenSSL's SSL/TLS implementation. |
class |
OpenSslContext |
class |
OpenSslServerContext
A server-side
SslContext which uses OpenSSL's SSL/TLS implementation. |
Modifier and Type | Method and Description |
---|---|
SslContext |
SslContextBuilder.build()
Create new
SslContext instance with configured settings. |
static SslContext |
SslContext.newClientContext()
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newClientContext(File certChainFile)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newClientContext(File certChainFile,
TrustManagerFactory trustManagerFactory)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newClientContext(File certChainFile,
TrustManagerFactory trustManagerFactory,
Iterable<String> ciphers,
CipherSuiteFilter cipherFilter,
ApplicationProtocolConfig apn,
long sessionCacheSize,
long sessionTimeout)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newClientContext(File certChainFile,
TrustManagerFactory trustManagerFactory,
Iterable<String> ciphers,
Iterable<String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newClientContext(SslProvider provider)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newClientContext(SslProvider provider,
File certChainFile)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newClientContext(SslProvider provider,
File certChainFile,
TrustManagerFactory trustManagerFactory)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newClientContext(SslProvider provider,
File trustCertCollectionFile,
TrustManagerFactory trustManagerFactory,
File keyCertChainFile,
File keyFile,
String keyPassword,
KeyManagerFactory keyManagerFactory,
Iterable<String> ciphers,
CipherSuiteFilter cipherFilter,
ApplicationProtocolConfig apn,
long sessionCacheSize,
long sessionTimeout)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newClientContext(SslProvider provider,
File certChainFile,
TrustManagerFactory trustManagerFactory,
Iterable<String> ciphers,
CipherSuiteFilter cipherFilter,
ApplicationProtocolConfig apn,
long sessionCacheSize,
long sessionTimeout)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newClientContext(SslProvider provider,
File certChainFile,
TrustManagerFactory trustManagerFactory,
Iterable<String> ciphers,
Iterable<String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newClientContext(SslProvider provider,
TrustManagerFactory trustManagerFactory)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newClientContext(TrustManagerFactory trustManagerFactory)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newServerContext(File certChainFile,
File keyFile)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newServerContext(File certChainFile,
File keyFile,
String keyPassword)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newServerContext(File certChainFile,
File keyFile,
String keyPassword,
Iterable<String> ciphers,
CipherSuiteFilter cipherFilter,
ApplicationProtocolConfig apn,
long sessionCacheSize,
long sessionTimeout)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newServerContext(File certChainFile,
File keyFile,
String keyPassword,
Iterable<String> ciphers,
Iterable<String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newServerContext(SslProvider provider,
File certChainFile,
File keyFile)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newServerContext(SslProvider provider,
File certChainFile,
File keyFile,
String keyPassword)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newServerContext(SslProvider provider,
File certChainFile,
File keyFile,
String keyPassword,
Iterable<String> ciphers,
CipherSuiteFilter cipherFilter,
ApplicationProtocolConfig apn,
long sessionCacheSize,
long sessionTimeout)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newServerContext(SslProvider provider,
File certChainFile,
File keyFile,
String keyPassword,
Iterable<String> ciphers,
Iterable<String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newServerContext(SslProvider provider,
File certChainFile,
File keyFile,
String keyPassword,
TrustManagerFactory trustManagerFactory,
Iterable<String> ciphers,
Iterable<String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Deprecated.
Replaced by
SslContextBuilder |
static SslContext |
SslContext.newServerContext(SslProvider provider,
File trustCertCollectionFile,
TrustManagerFactory trustManagerFactory,
File keyCertChainFile,
File keyFile,
String keyPassword,
KeyManagerFactory keyManagerFactory,
Iterable<String> ciphers,
CipherSuiteFilter cipherFilter,
ApplicationProtocolConfig apn,
long sessionCacheSize,
long sessionTimeout)
Deprecated.
Replaced by
SslContextBuilder |
SslContext |
SniHandler.sslContext() |
Constructor and Description |
---|
SniHandler(DomainNameMapping<? extends SslContext> mapping)
Create a SNI detection handler with configured
SslContext
maintained by DomainNameMapping |
Constructor and Description |
---|
SocketSslClientRenegotiateTest(SslContext serverCtx,
SslContext clientCtx) |
SocketSslEchoTest(SslContext serverCtx,
SslContext clientCtx,
SocketSslEchoTest.Renegotiation renegotiation,
boolean serverUsesDelegatedTaskExecutor,
boolean clientUsesDelegatedTaskExecutor,
boolean autoRead,
boolean useChunkedWriteHandler,
boolean useCompositeByteBuf) |
SocketSslGreetingTest(SslContext serverCtx,
SslContext clientCtx) |
SocketSslSessionReuseTest(SslContext serverCtx,
SslContext clientCtx) |
SocketStartTlsTest(SslContext serverCtx,
SslContext clientCtx) |
Copyright © 2008–2016 The Netty Project. All rights reserved.