Home / Function/ isLiteralWithNameRef() — netty Function Reference

isLiteralWithNameRef() — netty Function Reference

Architecture documentation for the isLiteralWithNameRef() function in QpackDecoder.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  029640e9_bd93_8bf3_9c94_6097a4aaf643["isLiteralWithNameRef()"]
  90fa2d3f_8d04_4c74_e2ce_52229be77194["QpackDecoder"]
  029640e9_bd93_8bf3_9c94_6097a4aaf643 -->|defined in| 90fa2d3f_8d04_4c74_e2ce_52229be77194
  678f973e_104e_7340_6c3b_b4ef23003fe0["decode()"]
  678f973e_104e_7340_6c3b_b4ef23003fe0 -->|calls| 029640e9_bd93_8bf3_9c94_6097a4aaf643
  style 029640e9_bd93_8bf3_9c94_6097a4aaf643 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http3/src/main/java/io/netty/handler/codec/http3/QpackDecoder.java lines 255–262

    private static boolean isLiteralWithNameRef(byte b) {
        // https://www.rfc-editor.org/rfc/rfc9204.html#name-literal-field-line-with-nam
        //  0   1   2   3   4   5   6   7
        // +---+---+---+---+---+---+---+---+
        // | 0 | 1 | N | T |Name Index (4+)|
        // +---+---+---+---+---------------+
        return (b & 0b1100_0000) == 0b0100_0000;
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does isLiteralWithNameRef() do?
isLiteralWithNameRef() is a function in the netty codebase, defined in codec-http3/src/main/java/io/netty/handler/codec/http3/QpackDecoder.java.
Where is isLiteralWithNameRef() defined?
isLiteralWithNameRef() is defined in codec-http3/src/main/java/io/netty/handler/codec/http3/QpackDecoder.java at line 255.
What calls isLiteralWithNameRef()?
isLiteralWithNameRef() 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