calculateMaxHeaderListSizeGoAway() — netty Function Reference
Architecture documentation for the calculateMaxHeaderListSizeGoAway() function in Http2CodecUtil.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 1df40a39_f54c_b3bd_5485_4ff69cf6c839["calculateMaxHeaderListSizeGoAway()"] 6edc25d4_1bef_4bc4_4c2d_9d321a931eff["Http2CodecUtil"] 1df40a39_f54c_b3bd_5485_4ff69cf6c839 -->|defined in| 6edc25d4_1bef_4bc4_4c2d_9d321a931eff style 1df40a39_f54c_b3bd_5485_4ff69cf6c839 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/Http2CodecUtil.java lines 128–131
public static long calculateMaxHeaderListSizeGoAway(long maxHeaderListSize) {
// This is equivalent to `maxHeaderListSize * 1.25` but we avoid floating point multiplication.
return maxHeaderListSize + (maxHeaderListSize >>> 2);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does calculateMaxHeaderListSizeGoAway() do?
calculateMaxHeaderListSizeGoAway() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2CodecUtil.java.
Where is calculateMaxHeaderListSizeGoAway() defined?
calculateMaxHeaderListSizeGoAway() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2CodecUtil.java at line 128.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free