legalNotFirstChar() — netty Function Reference
Architecture documentation for the legalNotFirstChar() function in HttpHeaderValidationUtilTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 102cb734_1ea9_8ef6_14e6_49a721f8e07f["legalNotFirstChar()"] 41393c8c_1006_6327_605c_681db4fcf453["HttpHeaderValidationUtilTest"] 102cb734_1ea9_8ef6_14e6_49a721f8e07f -->|defined in| 41393c8c_1006_6327_605c_681db4fcf453 b074883a_ddf3_3abd_a4aa_f460c5ce2c5e["asciiStrings()"] 102cb734_1ea9_8ef6_14e6_49a721f8e07f -->|calls| b074883a_ddf3_3abd_a4aa_f460c5ce2c5e style 102cb734_1ea9_8ef6_14e6_49a721f8e07f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/test/java/io/netty/handler/codec/http/HttpHeaderValidationUtilTest.java lines 304–315
public static List<AsciiString> legalNotFirstChar() {
List<AsciiString> list = new ArrayList<AsciiString>();
for (int i = 0; i < 0xFF; i++) {
if (i == 0x7F || i < 0x21 && (i != ' ' || i != '\t')) {
continue;
}
asciiStrings(new byte[] {'a', (byte) i}, list);
}
return list;
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does legalNotFirstChar() do?
legalNotFirstChar() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpHeaderValidationUtilTest.java.
Where is legalNotFirstChar() defined?
legalNotFirstChar() is defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpHeaderValidationUtilTest.java at line 304.
What does legalNotFirstChar() call?
legalNotFirstChar() 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