handshakeComplete() — netty Function Reference
Architecture documentation for the handshakeComplete() function in BoringSSLHandshakeCompleteCallback.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD f2b0e0ec_f25b_02aa_d346_64732c8418ee["handshakeComplete()"] 5485d764_5d33_df6b_95ea_809505a8585c["BoringSSLHandshakeCompleteCallback"] f2b0e0ec_f25b_02aa_d346_64732c8418ee -->|defined in| 5485d764_5d33_df6b_95ea_809505a8585c style f2b0e0ec_f25b_02aa_d346_64732c8418ee fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-classes-quic/src/main/java/io/netty/handler/codec/quic/BoringSSLHandshakeCompleteCallback.java lines 26–35
@SuppressWarnings("unused")
void handshakeComplete(long ssl, byte[] id, String cipher, String protocol, byte[] peerCertificate,
byte[][] peerCertificateChain, long creationTime, long timeout, byte[] applicationProtocol,
boolean sessionReused) {
QuicheQuicSslEngine engine = map.get(ssl);
if (engine != null) {
engine.handshakeFinished(id, cipher, protocol, peerCertificate, peerCertificateChain, creationTime,
timeout, applicationProtocol, sessionReused);
}
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does handshakeComplete() do?
handshakeComplete() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/BoringSSLHandshakeCompleteCallback.java.
Where is handshakeComplete() defined?
handshakeComplete() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/BoringSSLHandshakeCompleteCallback.java at line 26.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free