Home / Function/ illegalFirstChar() — netty Function Reference

illegalFirstChar() — netty Function Reference

Architecture documentation for the illegalFirstChar() function in HttpHeaderValidationUtilTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  2962afbb_ec6c_1b48_ebf1_f5e3a2e70b78["illegalFirstChar()"]
  41393c8c_1006_6327_605c_681db4fcf453["HttpHeaderValidationUtilTest"]
  2962afbb_ec6c_1b48_ebf1_f5e3a2e70b78 -->|defined in| 41393c8c_1006_6327_605c_681db4fcf453
  b074883a_ddf3_3abd_a4aa_f460c5ce2c5e["asciiStrings()"]
  2962afbb_ec6c_1b48_ebf1_f5e3a2e70b78 -->|calls| b074883a_ddf3_3abd_a4aa_f460c5ce2c5e
  style 2962afbb_ec6c_1b48_ebf1_f5e3a2e70b78 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/test/java/io/netty/handler/codec/http/HttpHeaderValidationUtilTest.java lines 217–226

    public static List<AsciiString> illegalFirstChar() {
        List<AsciiString> list = new ArrayList<AsciiString>();

        for (byte i = 0; i < 0x21; i++) {
            asciiStrings(new byte[]{i, 'a'}, list);
        }
        asciiStrings(new byte[]{0x7F, 'a'}, list);

        return list;
    }

Domain

Subdomains

Frequently Asked Questions

What does illegalFirstChar() do?
illegalFirstChar() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpHeaderValidationUtilTest.java.
Where is illegalFirstChar() defined?
illegalFirstChar() is defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpHeaderValidationUtilTest.java at line 217.
What does illegalFirstChar() call?
illegalFirstChar() calls 1 function(s): asciiStrings.

Analyze Your Own Codebase

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

Try Supermodel Free