Home / Function/ testHeaderNameStartsWithControlChar() — netty Function Reference

testHeaderNameStartsWithControlChar() — netty Function Reference

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

Function java Buffer Allocators calls 1 called by 5

Entity Profile

Dependency Diagram

graph TD
  b62c81d0_0a2e_3ff9_b8cd_7830e1dbdaad["testHeaderNameStartsWithControlChar()"]
  90546a8c_51c4_a9dc_b6e8_695d29269596["HttpResponseDecoderTest"]
  b62c81d0_0a2e_3ff9_b8cd_7830e1dbdaad -->|defined in| 90546a8c_51c4_a9dc_b6e8_695d29269596
  de373e43_1f89_d75f_f259_2528fd10b0bc["testHeaderNameStartsWithControlChar1c()"]
  de373e43_1f89_d75f_f259_2528fd10b0bc -->|calls| b62c81d0_0a2e_3ff9_b8cd_7830e1dbdaad
  7bd2e056_a456_0f25_0a33_3880d09d1cb1["testHeaderNameStartsWithControlChar1d()"]
  7bd2e056_a456_0f25_0a33_3880d09d1cb1 -->|calls| b62c81d0_0a2e_3ff9_b8cd_7830e1dbdaad
  02c281b6_09d2_7653_2744_549bee036157["testHeaderNameStartsWithControlChar1e()"]
  02c281b6_09d2_7653_2744_549bee036157 -->|calls| b62c81d0_0a2e_3ff9_b8cd_7830e1dbdaad
  b9dbfda5_8cec_1f04_3101_6d66397965a0["testHeaderNameStartsWithControlChar1f()"]
  b9dbfda5_8cec_1f04_3101_6d66397965a0 -->|calls| b62c81d0_0a2e_3ff9_b8cd_7830e1dbdaad
  6476b33a_01a8_6171_eccc_dddad34edced["testHeaderNameStartsWithControlChar0c()"]
  6476b33a_01a8_6171_eccc_dddad34edced -->|calls| b62c81d0_0a2e_3ff9_b8cd_7830e1dbdaad
  ee16ce6b_0b51_ba66_6b2c_476799b88b5b["testInvalidHeaders0()"]
  b62c81d0_0a2e_3ff9_b8cd_7830e1dbdaad -->|calls| ee16ce6b_0b51_ba66_6b2c_476799b88b5b
  style b62c81d0_0a2e_3ff9_b8cd_7830e1dbdaad fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/test/java/io/netty/handler/codec/http/HttpResponseDecoderTest.java lines 1173–1180

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

Domain

Subdomains

Frequently Asked Questions

What does testHeaderNameStartsWithControlChar() do?
testHeaderNameStartsWithControlChar() is a function in the netty codebase, defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpResponseDecoderTest.java.
Where is testHeaderNameStartsWithControlChar() defined?
testHeaderNameStartsWithControlChar() is defined in codec-http/src/test/java/io/netty/handler/codec/http/HttpResponseDecoderTest.java at line 1173.
What does testHeaderNameStartsWithControlChar() call?
testHeaderNameStartsWithControlChar() calls 1 function(s): testInvalidHeaders0.
What calls testHeaderNameStartsWithControlChar()?
testHeaderNameStartsWithControlChar() is called by 5 function(s): testHeaderNameStartsWithControlChar0c, testHeaderNameStartsWithControlChar1c, testHeaderNameStartsWithControlChar1d, testHeaderNameStartsWithControlChar1e, testHeaderNameStartsWithControlChar1f.

Analyze Your Own Codebase

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

Try Supermodel Free