HAProxyMessage() — netty Function Reference
Architecture documentation for the HAProxyMessage() function in HAProxyMessage.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD f4a83627_4b55_e57a_4cc8_cf8ebe863872["HAProxyMessage()"] 086e8ebe_0b5c_c158_91d0_e3710503e584["HAProxyMessage"] f4a83627_4b55_e57a_4cc8_cf8ebe863872 -->|defined in| 086e8ebe_0b5c_c158_91d0_e3710503e584 12f6af6e_6ca5_e26e_9da6_9cfaf23e27fa["portStringToInt()"] f4a83627_4b55_e57a_4cc8_cf8ebe863872 -->|calls| 12f6af6e_6ca5_e26e_9da6_9cfaf23e27fa 5ffc38ec_18a7_5545_cee7_67ab12d7b534["checkAddress()"] f4a83627_4b55_e57a_4cc8_cf8ebe863872 -->|calls| 5ffc38ec_18a7_5545_cee7_67ab12d7b534 9e3cf994_2859_45d4_77bf_0af573a60545["checkPort()"] f4a83627_4b55_e57a_4cc8_cf8ebe863872 -->|calls| 9e3cf994_2859_45d4_77bf_0af573a60545 5d8ff0a3_25a7_a5ad_456b_201f7fd76744["readTlvs()"] f4a83627_4b55_e57a_4cc8_cf8ebe863872 -->|calls| 5d8ff0a3_25a7_a5ad_456b_201f7fd76744 c1c860e2_aa16_a3f9_c24a_1210ab38ea01["tryRecord()"] f4a83627_4b55_e57a_4cc8_cf8ebe863872 -->|calls| c1c860e2_aa16_a3f9_c24a_1210ab38ea01 style f4a83627_4b55_e57a_4cc8_cf8ebe863872 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-haproxy/src/main/java/io/netty/handler/codec/haproxy/HAProxyMessage.java lines 57–63
private HAProxyMessage(
HAProxyProtocolVersion protocolVersion, HAProxyCommand command, HAProxyProxiedProtocol proxiedProtocol,
String sourceAddress, String destinationAddress, String sourcePort, String destinationPort) {
this(
protocolVersion, command, proxiedProtocol,
sourceAddress, destinationAddress, portStringToInt(sourcePort), portStringToInt(destinationPort));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does HAProxyMessage() do?
HAProxyMessage() is a function in the netty codebase, defined in codec-haproxy/src/main/java/io/netty/handler/codec/haproxy/HAProxyMessage.java.
Where is HAProxyMessage() defined?
HAProxyMessage() is defined in codec-haproxy/src/main/java/io/netty/handler/codec/haproxy/HAProxyMessage.java at line 57.
What does HAProxyMessage() call?
HAProxyMessage() calls 5 function(s): checkAddress, checkPort, portStringToInt, readTlvs, tryRecord.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free