setSNIMatcher() — netty Function Reference
Architecture documentation for the setSNIMatcher() function in Java8SslTestUtils.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 8ede6e06_6ccf_2168_ebe2_66a715f20e69["setSNIMatcher()"] 0f6846ac_7487_9549_2d6d_35fbf536c0a3["Java8SslTestUtils"] 8ede6e06_6ccf_2168_ebe2_66a715f20e69 -->|defined in| 0f6846ac_7487_9549_2d6d_35fbf536c0a3 style 8ede6e06_6ccf_2168_ebe2_66a715f20e69 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/test/java/io/netty/handler/ssl/Java8SslTestUtils.java lines 38–46
static void setSNIMatcher(SSLParameters parameters, final byte[] match) {
SNIMatcher matcher = new SNIMatcher(0) {
@Override
public boolean matches(SNIServerName sniServerName) {
return Arrays.equals(match, sniServerName.getEncoded());
}
};
parameters.setSNIMatchers(Collections.singleton(matcher));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does setSNIMatcher() do?
setSNIMatcher() is a function in the netty codebase, defined in handler/src/test/java/io/netty/handler/ssl/Java8SslTestUtils.java.
Where is setSNIMatcher() defined?
setSNIMatcher() is defined in handler/src/test/java/io/netty/handler/ssl/Java8SslTestUtils.java at line 38.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free