Home / Function/ encodePrivateAuthResponse() — netty Function Reference

encodePrivateAuthResponse() — netty Function Reference

Architecture documentation for the encodePrivateAuthResponse() function in Socks5ServerEncoder.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  58b88a50_86b0_34d7_83c1_b26d1a4c42f9["encodePrivateAuthResponse()"]
  1cdfa3cc_d2e9_1ff0_108d_c82ab4a96f74["Socks5ServerEncoder"]
  58b88a50_86b0_34d7_83c1_b26d1a4c42f9 -->|defined in| 1cdfa3cc_d2e9_1ff0_108d_c82ab4a96f74
  33d88147_b1e4_e0c2_2929_cc0fe97a48dc["encode()"]
  33d88147_b1e4_e0c2_2929_cc0fe97a48dc -->|calls| 58b88a50_86b0_34d7_83c1_b26d1a4c42f9
  style 58b88a50_86b0_34d7_83c1_b26d1a4c42f9 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-socks/src/main/java/io/netty/handler/codec/socksx/v5/Socks5ServerEncoder.java lines 85–88

    private static void encodePrivateAuthResponse(Socks5PrivateAuthResponse msg, ByteBuf out) {
        out.writeByte(0x01);
        out.writeByte(msg.status().byteValue());
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does encodePrivateAuthResponse() do?
encodePrivateAuthResponse() is a function in the netty codebase, defined in codec-socks/src/main/java/io/netty/handler/codec/socksx/v5/Socks5ServerEncoder.java.
Where is encodePrivateAuthResponse() defined?
encodePrivateAuthResponse() is defined in codec-socks/src/main/java/io/netty/handler/codec/socksx/v5/Socks5ServerEncoder.java at line 85.
What calls encodePrivateAuthResponse()?
encodePrivateAuthResponse() is called by 1 function(s): encode.

Analyze Your Own Codebase

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

Try Supermodel Free