Home / Function/ setMaxHeaderListSize() — netty Function Reference

setMaxHeaderListSize() — netty Function Reference

Architecture documentation for the setMaxHeaderListSize() function in HpackEncoder.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  ec73f8cc_c4f0_6fb1_16f5_ab299f521e9b["setMaxHeaderListSize()"]
  616b4418_6852_a9a9_188d_063a8768b35a["HpackEncoder"]
  ec73f8cc_c4f0_6fb1_16f5_ab299f521e9b -->|defined in| 616b4418_6852_a9a9_188d_063a8768b35a
  style ec73f8cc_c4f0_6fb1_16f5_ab299f521e9b fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/HpackEncoder.java lines 255–261

    public void setMaxHeaderListSize(long maxHeaderListSize) throws Http2Exception {
        if (maxHeaderListSize < MIN_HEADER_LIST_SIZE || maxHeaderListSize > MAX_HEADER_LIST_SIZE) {
            throw connectionError(PROTOCOL_ERROR, "Header List Size must be >= %d and <= %d but was %d",
              MIN_HEADER_LIST_SIZE, MAX_HEADER_LIST_SIZE, maxHeaderListSize);
        }
        this.maxHeaderListSize = maxHeaderListSize;
    }

Domain

Subdomains

Frequently Asked Questions

What does setMaxHeaderListSize() do?
setMaxHeaderListSize() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/HpackEncoder.java.
Where is setMaxHeaderListSize() defined?
setMaxHeaderListSize() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/HpackEncoder.java at line 255.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free