Home / Function/ testHeaderNameEndsWithControlChar() — netty Function Reference

testHeaderNameEndsWithControlChar() — netty Function Reference

Architecture documentation for the testHeaderNameEndsWithControlChar() function in HttpResponseDecoderTest.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 5

Entity Profile

Dependency Diagram

graph TD
  97261986_3d3e_28a2_77fd_d56fe7b31d47["testHeaderNameEndsWithControlChar()"]
  90546a8c_51c4_a9dc_b6e8_695d29269596["HttpResponseDecoderTest"]
  97261986_3d3e_28a2_77fd_d56fe7b31d47 -->|defined in| 90546a8c_51c4_a9dc_b6e8_695d29269596
  5299fe5b_c8f8_450b_bd2a_9d5cc9ddc09b["testHeaderNameEndsWithControlChar1c()"]
  5299fe5b_c8f8_450b_bd2a_9d5cc9ddc09b -->|calls| 97261986_3d3e_28a2_77fd_d56fe7b31d47
  dde116d7_0e27_8cf1_bb5f_d6f8fc0a0480["testHeaderNameEndsWithControlChar1d()"]
  dde116d7_0e27_8cf1_bb5f_d6f8fc0a0480 -->|calls| 97261986_3d3e_28a2_77fd_d56fe7b31d47
  4680fba9_c97f_1ce9_c893_eb1d8bf6e92b["testHeaderNameEndsWithControlChar1e()"]
  4680fba9_c97f_1ce9_c893_eb1d8bf6e92b -->|calls| 97261986_3d3e_28a2_77fd_d56fe7b31d47
  088a7a5f_2494_e264_80c0_f4bec34eed78["testHeaderNameEndsWithControlChar1f()"]
  088a7a5f_2494_e264_80c0_f4bec34eed78 -->|calls| 97261986_3d3e_28a2_77fd_d56fe7b31d47
  c67ff9e4_b3e6_24bf_1867_3e3aa9b8f8fa["testHeaderNameEndsWithControlChar0c()"]
  c67ff9e4_b3e6_24bf_1867_3e3aa9b8f8fa -->|calls| 97261986_3d3e_28a2_77fd_d56fe7b31d47
  ee16ce6b_0b51_ba66_6b2c_476799b88b5b["testInvalidHeaders0()"]
  97261986_3d3e_28a2_77fd_d56fe7b31d47 -->|calls| ee16ce6b_0b51_ba66_6b2c_476799b88b5b
  style 97261986_3d3e_28a2_77fd_d56fe7b31d47 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/test/java/io/netty/handler/codec/http/HttpResponseDecoderTest.java lines 1207–1215

    private static void testHeaderNameEndsWithControlChar(int controlChar) {
        ByteBuf responseBuffer = Unpooled.buffer();
        responseBuffer.writeCharSequence("HTTP/1.1 200 OK\r\n" +
                "Host: netty.io\r\n", CharsetUtil.US_ASCII);
        responseBuffer.writeCharSequence("Transfer-Encoding", CharsetUtil.US_ASCII);
        responseBuffer.writeByte(controlChar);
        responseBuffer.writeCharSequence(": chunked\r\n\r\n", CharsetUtil.US_ASCII);
        testInvalidHeaders0(responseBuffer);
    }

Domain

Subdomains

Frequently Asked Questions

What does testHeaderNameEndsWithControlChar() do?
testHeaderNameEndsWithControlChar() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpResponseDecoderTest.java.
Where is testHeaderNameEndsWithControlChar() defined?
testHeaderNameEndsWithControlChar() is defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpResponseDecoderTest.java at line 1207.
What does testHeaderNameEndsWithControlChar() call?
testHeaderNameEndsWithControlChar() calls 1 function(s): testInvalidHeaders0.
What calls testHeaderNameEndsWithControlChar()?
testHeaderNameEndsWithControlChar() is called by 5 function(s): testHeaderNameEndsWithControlChar0c, testHeaderNameEndsWithControlChar1c, testHeaderNameEndsWithControlChar1d, testHeaderNameEndsWithControlChar1e, testHeaderNameEndsWithControlChar1f.

Analyze Your Own Codebase

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

Try Supermodel Free