handleNonSsl() — netty Function Reference
Architecture documentation for the handleNonSsl() function in OptionalSslHandler.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 7f7f86e6_fd96_a0aa_060a_dd6c81c8318f["handleNonSsl()"] 18d476fe_9be9_0c53_8989_4e0784f98ac4["OptionalSslHandler"] 7f7f86e6_fd96_a0aa_060a_dd6c81c8318f -->|defined in| 18d476fe_9be9_0c53_8989_4e0784f98ac4 7f38a5c8_bb25_873f_69ff_5f0e8badd744["decode()"] 7f38a5c8_bb25_873f_69ff_5f0e8badd744 -->|calls| 7f7f86e6_fd96_a0aa_060a_dd6c81c8318f style 7f7f86e6_fd96_a0aa_060a_dd6c81c8318f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/main/java/io/netty/handler/ssl/OptionalSslHandler.java lines 69–76
private void handleNonSsl(ChannelHandlerContext context) {
ChannelHandler handler = newNonSslHandler(context);
if (handler != null) {
context.pipeline().replace(this, newNonSslHandlerName(), handler);
} else {
context.pipeline().remove(this);
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does handleNonSsl() do?
handleNonSsl() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/OptionalSslHandler.java.
Where is handleNonSsl() defined?
handleNonSsl() is defined in handler/src/main/java/io/netty/handler/ssl/OptionalSslHandler.java at line 69.
What calls handleNonSsl()?
handleNonSsl() is called by 1 function(s): decode.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free