isLiteralWithPostBaseNameRef() — netty Function Reference
Architecture documentation for the isLiteralWithPostBaseNameRef() function in QpackDecoder.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 2f6814a7_a9ce_9143_6ad0_94d72c16edab["isLiteralWithPostBaseNameRef()"] 90fa2d3f_8d04_4c74_e2ce_52229be77194["QpackDecoder"] 2f6814a7_a9ce_9143_6ad0_94d72c16edab -->|defined in| 90fa2d3f_8d04_4c74_e2ce_52229be77194 678f973e_104e_7340_6c3b_b4ef23003fe0["decode()"] 678f973e_104e_7340_6c3b_b4ef23003fe0 -->|calls| 2f6814a7_a9ce_9143_6ad0_94d72c16edab style 2f6814a7_a9ce_9143_6ad0_94d72c16edab fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http3/src/main/java/io/netty/handler/codec/http3/QpackDecoder.java lines 282–289
private static boolean isLiteralWithPostBaseNameRef(byte b) {
// https://www.rfc-editor.org/rfc/rfc9204.html#name-literal-field-line-with-pos
// 0 1 2 3 4 5 6 7
// +---+---+---+---+---+---+---+---+
// | 0 | 0 | 0 | 0 | N |NameIdx(3+)|
// +---+---+---+---+---+-----------+
return (b & 0b1111_0000) == 0b0000_0000;
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does isLiteralWithPostBaseNameRef() do?
isLiteralWithPostBaseNameRef() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/QpackDecoder.java.
Where is isLiteralWithPostBaseNameRef() defined?
isLiteralWithPostBaseNameRef() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/QpackDecoder.java at line 282.
What calls isLiteralWithPostBaseNameRef()?
isLiteralWithPostBaseNameRef() is called by 1 function(s): decode.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free