Package | Description |
---|---|
org.jboss.netty.example.factorial | |
org.jboss.netty.example.http.file | |
org.jboss.netty.example.http.helloworld | |
org.jboss.netty.example.http.snoop | |
org.jboss.netty.example.http.upload | |
org.jboss.netty.example.http.websocketx.server |
This package contains an example web socket web server.
|
org.jboss.netty.example.localtime | |
org.jboss.netty.example.portunification | |
org.jboss.netty.example.securechat | |
org.jboss.netty.example.telnet | |
org.jboss.netty.handler.ssl |
Constructor and Description |
---|
FactorialClientPipelineFactory(SslContext sslCtx) |
FactorialServerPipelineFactory(SslContext sslCtx) |
Constructor and Description |
---|
HttpStaticFileServerPipelineFactory(SslContext sslCtx) |
Constructor and Description |
---|
HttpHelloWorldServerPipelineFactory(SslContext sslCtx) |
Constructor and Description |
---|
HttpSnoopClientPipelineFactory(SslContext sslCtx,
String host,
int port) |
HttpSnoopServerPipelineFactory(SslContext sslCtx) |
Constructor and Description |
---|
HttpUploadClientPipelineFactory(SslContext sslCtx,
String host,
int port) |
HttpUploadServerPipelineFactory(SslContext sslCtx) |
Constructor and Description |
---|
WebSocketServerPipelineFactory(SslContext sslCtx) |
Constructor and Description |
---|
LocalTimeClientPipelineFactory(SslContext sslCtx) |
LocalTimeServerPipelineFactory(SslContext sslCtx) |
Constructor and Description |
---|
PortUnificationServerHandler(SslContext sslCtx) |
Constructor and Description |
---|
SecureChatClientPipelineFactory(SslContext sslCtx) |
SecureChatServerPipelineFactory(SslContext sslCtx) |
Constructor and Description |
---|
TelnetClientPipelineFactory(SslContext sslCtx) |
TelnetServerPipelineFactory(SslContext sslCtx) |
Modifier and Type | Class and Description |
---|---|
class |
JdkSslClientContext
A client-side
SslContext which uses JDK's SSL/TLS implementation. |
class |
JdkSslContext
An
SslContext which uses JDK's SSL/TLS implementation. |
class |
JdkSslServerContext
A server-side
SslContext which uses JDK's SSL/TLS implementation. |
class |
OpenSslServerContext
A server-side
SslContext which uses OpenSSL's SSL/TLS implementation. |
Modifier and Type | Method and Description |
---|---|
static SslContext |
SslContext.newClientContext()
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newClientContext(File certChainFile)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newClientContext(File certChainFile,
TrustManagerFactory trustManagerFactory)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newClientContext(SslBufferPool bufPool,
File certChainFile,
TrustManagerFactory trustManagerFactory,
Iterable<String> ciphers,
Iterable<String> nextProtocols,
long sessionCacheSize,
long sessionTimeout)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newClientContext(SslProvider provider)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newClientContext(SslProvider provider,
File certChainFile)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newClientContext(SslProvider provider,
File certChainFile,
TrustManagerFactory trustManagerFactory)
Creates a new client-side
SslContext . |
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-side
SslContext . |
static SslContext |
SslContext.newClientContext(SslProvider provider,
TrustManagerFactory trustManagerFactory)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newClientContext(TrustManagerFactory trustManagerFactory)
Creates a new client-side
SslContext . |
static SslContext |
SslContext.newServerContext(File certChainFile,
File keyFile)
Creates a new server-side
SslContext . |
static SslContext |
SslContext.newServerContext(File certChainFile,
File keyFile,
String keyPassword)
Creates a new server-side
SslContext . |
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-side
SslContext . |
static SslContext |
SslContext.newServerContext(SslProvider provider,
File certChainFile,
File keyFile)
Creates a new server-side
SslContext . |
static SslContext |
SslContext.newServerContext(SslProvider provider,
File certChainFile,
File keyFile,
String keyPassword)
Creates a new server-side
SslContext . |
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-side
SslContext . |
Copyright © 2008–2025 The Netty Project. All rights reserved.