illegalFirstChar() — netty Function Reference
Architecture documentation for the illegalFirstChar() function in DefaultHttp2HeadersDecoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 33b49571_0849_d1eb_ddea_7d03a9c0beac["illegalFirstChar()"] bddf27d1_0dcd_a270_e076_3c8aa8b9b31f["DefaultHttp2HeadersDecoderTest"] 33b49571_0849_d1eb_ddea_7d03a9c0beac -->|defined in| bddf27d1_0dcd_a270_e076_3c8aa8b9b31f style 33b49571_0849_d1eb_ddea_7d03a9c0beac fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2HeadersDecoderTest.java lines 179–186
public static List<Integer> illegalFirstChar() {
ArrayList<Integer> list = new ArrayList<Integer>();
for (int i = 0; i < 0x21; i++) {
list.add(i);
}
list.add(0x7F);
return list;
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does illegalFirstChar() do?
illegalFirstChar() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2HeadersDecoderTest.java.
Where is illegalFirstChar() defined?
illegalFirstChar() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2HeadersDecoderTest.java at line 179.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free