setVerifyCallback() — netty Function Reference
Architecture documentation for the setVerifyCallback() function in ReferenceCountedOpenSslClientContext.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD a68e950c_c9f8_4196_ac2e_bfaf6daff7c0["setVerifyCallback()"] 83d6329d_6707_0ba7_b929_d52e1cc5dcf0["ReferenceCountedOpenSslClientContext"] a68e950c_c9f8_4196_ac2e_bfaf6daff7c0 -->|defined in| 83d6329d_6707_0ba7_b929_d52e1cc5dcf0 3ade9400_a85f_1392_29c8_dd4562bef618["OpenSslSessionContext()"] 3ade9400_a85f_1392_29c8_dd4562bef618 -->|calls| a68e950c_c9f8_4196_ac2e_bfaf6daff7c0 da8fc4fc_7c6f_b25d_a04b_235005ee5d18["ExtendedTrustManagerVerifyCallback()"] a68e950c_c9f8_4196_ac2e_bfaf6daff7c0 -->|calls| da8fc4fc_7c6f_b25d_a04b_235005ee5d18 ac63c045_5707_de9b_edb6_975d0ddedc16["TrustManagerVerifyCallback()"] a68e950c_c9f8_4196_ac2e_bfaf6daff7c0 -->|calls| ac63c045_5707_de9b_edb6_975d0ddedc16 style a68e950c_c9f8_4196_ac2e_bfaf6daff7c0 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslClientContext.java lines 198–208
private static void setVerifyCallback(long ctx,
Map<Long, ReferenceCountedOpenSslEngine> engines,
X509TrustManager manager) {
// Use this to prevent an error when running on java < 7
if (useExtendedTrustManager(manager)) {
SSLContext.setCertVerifyCallback(ctx,
new ExtendedTrustManagerVerifyCallback(engines, (X509ExtendedTrustManager) manager));
} else {
SSLContext.setCertVerifyCallback(ctx, new TrustManagerVerifyCallback(engines, manager));
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does setVerifyCallback() do?
setVerifyCallback() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslClientContext.java.
Where is setVerifyCallback() defined?
setVerifyCallback() is defined in handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslClientContext.java at line 198.
What does setVerifyCallback() call?
setVerifyCallback() calls 2 function(s): ExtendedTrustManagerVerifyCallback, TrustManagerVerifyCallback.
What calls setVerifyCallback()?
setVerifyCallback() is called by 1 function(s): OpenSslSessionContext.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free