| Package | Description |
|---|---|
| com.sun.nio.sctp |
This package is only included to let SCTP also compile on non-unix operation systems.
|
| io.netty.channel.sctp |
Abstract SCTP socket interfaces which extend the core channel API.
|
| io.netty.channel.sctp.nio |
NIO-based SCTP Channel
API implementation - recommended for a large number of connections (>= 1000).
|
| io.netty.channel.sctp.oio |
Old blocking I/O based SCTP channel API implementation - recommended for
a small number of connections (< 1000).
|
| Modifier and Type | Method and Description |
|---|---|
abstract SctpChannel |
SctpServerChannel.accept() |
abstract SctpChannel |
SctpChannel.bind(java.net.SocketAddress local) |
abstract SctpChannel |
SctpChannel.bindAddress(java.net.InetAddress inetAddress) |
static SctpChannel |
SctpChannel.open() |
abstract <T> SctpChannel |
SctpChannel.setOption(SctpSocketOption<T> name,
T value) |
abstract SctpChannel |
SctpChannel.unbindAddress(java.net.InetAddress inetAddress) |
| Modifier and Type | Field and Description |
|---|---|
private SctpChannel |
DefaultSctpChannelConfig.javaChannel |
| Constructor and Description |
|---|
DefaultSctpChannelConfig(SctpChannel channel,
SctpChannel javaChannel) |
| Modifier and Type | Method and Description |
|---|---|
protected SctpChannel |
NioSctpChannel.javaChannel() |
private static SctpChannel |
NioSctpChannel.newSctpChannel() |
| Constructor and Description |
|---|
NioSctpChannel(Channel parent,
SctpChannel sctpChannel)
Create a new instance
|
NioSctpChannel(SctpChannel sctpChannel)
Create a new instance using
SctpChannel |
NioSctpChannelConfig(NioSctpChannel channel,
SctpChannel javaChannel) |
| Modifier and Type | Field and Description |
|---|---|
private SctpChannel |
OioSctpChannel.ch |
| Modifier and Type | Method and Description |
|---|---|
private static SctpChannel |
OioSctpChannel.openChannel() |
| Constructor and Description |
|---|
OioSctpChannel(Channel parent,
SctpChannel ch)
Create a new instance from the given
SctpChannel. |
OioSctpChannel(SctpChannel ch)
Create a new instance from the given
SctpChannel. |
OioSctpChannelConfig(OioSctpChannel channel,
SctpChannel javaChannel) |