sctpServerChannel() — netty Function Reference
Architecture documentation for the sctpServerChannel() function in SctpTestPermutation.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD fb025d8f_200e_350a_7c0b_0f441ec7c9b8["sctpServerChannel()"] 3441e8d1_071f_8f60_91b2_bf7755ab0cc1["SctpTestPermutation"] fb025d8f_200e_350a_7c0b_0f441ec7c9b8 -->|defined in| 3441e8d1_071f_8f60_91b2_bf7755ab0cc1 c67aae3d_711b_9df8_53d5_df05aafbadb7["sctpChannel()"] c67aae3d_711b_9df8_53d5_df05aafbadb7 -->|calls| fb025d8f_200e_350a_7c0b_0f441ec7c9b8 style fb025d8f_200e_350a_7c0b_0f441ec7c9b8 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
testsuite/src/main/java/io/netty/testsuite/transport/sctp/SctpTestPermutation.java lines 45–70
static List<BootstrapFactory<ServerBootstrap>> sctpServerChannel() {
if (!TestUtils.isSctpSupported()) {
return Collections.emptyList();
}
List<BootstrapFactory<ServerBootstrap>> list = new ArrayList<BootstrapFactory<ServerBootstrap>>();
// Make the list of ServerBootstrap factories.
list.add(new BootstrapFactory<ServerBootstrap>() {
@Override
public ServerBootstrap newInstance() {
return new ServerBootstrap().
group(NIO_GROUP).
channel(NioSctpServerChannel.class);
}
});
list.add(new BootstrapFactory<ServerBootstrap>() {
@Override
public ServerBootstrap newInstance() {
return new ServerBootstrap().
group(OIO_GROUP).
channel(OioSctpServerChannel.class);
}
});
return list;
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does sctpServerChannel() do?
sctpServerChannel() is a function in the netty codebase, defined in testsuite/src/main/java/io/netty/testsuite/transport/sctp/SctpTestPermutation.java.
Where is sctpServerChannel() defined?
sctpServerChannel() is defined in testsuite/src/main/java/io/netty/testsuite/transport/sctp/SctpTestPermutation.java at line 45.
What calls sctpServerChannel()?
sctpServerChannel() is called by 1 function(s): sctpChannel.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free