contentNumBytes() — netty Function Reference
Architecture documentation for the contentNumBytes() function in HAProxySSLTLV.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD ea21e13b_c27e_718b_8303_1f0a9c45ac77["contentNumBytes()"] 085fe2ee_7202_b045_2acd_11fd26578447["HAProxySSLTLV"] ea21e13b_c27e_718b_8303_1f0a9c45ac77 -->|defined in| 085fe2ee_7202_b045_2acd_11fd26578447 43eff29e_3820_4c62_12d4_768ccf42b8b7["verify()"] ea21e13b_c27e_718b_8303_1f0a9c45ac77 -->|calls| 43eff29e_3820_4c62_12d4_768ccf42b8b7 style ea21e13b_c27e_718b_8303_1f0a9c45ac77 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-haproxy/src/main/java/io/netty/handler/codec/haproxy/HAProxySSLTLV.java lines 107–114
@Override
int contentNumBytes() {
int tlvNumBytes = 0;
for (int i = 0; i < tlvs.size(); i++) {
tlvNumBytes += tlvs.get(i).totalNumBytes();
}
return 5 + tlvNumBytes; // clientBit(1) + verify(4) + tlvs
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does contentNumBytes() do?
contentNumBytes() is a function in the netty codebase, defined in codec-haproxy/src/main/java/io/netty/handler/codec/haproxy/HAProxySSLTLV.java.
Where is contentNumBytes() defined?
contentNumBytes() is defined in codec-haproxy/src/main/java/io/netty/handler/codec/haproxy/HAProxySSLTLV.java at line 107.
What does contentNumBytes() call?
contentNumBytes() calls 1 function(s): verify.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free