Home / Function/ encodePrivateAuthRequest() — netty Function Reference

encodePrivateAuthRequest() — netty Function Reference

Architecture documentation for the encodePrivateAuthRequest() function in Socks5ClientEncoder.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  0e35a09a_4872_130d_303e_d9660780c1cf["encodePrivateAuthRequest()"]
  38438508_6164_1fbb_2974_832cc944b4c7["Socks5ClientEncoder"]
  0e35a09a_4872_130d_303e_d9660780c1cf -->|defined in| 38438508_6164_1fbb_2974_832cc944b4c7
  7cc5b5cc_17e1_f6ca_091c_89fabe99b164["encode()"]
  7cc5b5cc_17e1_f6ca_091c_89fabe99b164 -->|calls| 0e35a09a_4872_130d_303e_d9660780c1cf
  style 0e35a09a_4872_130d_303e_d9660780c1cf fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-socks/src/main/java/io/netty/handler/codec/socksx/v5/Socks5ClientEncoder.java lines 108–113

    private static void encodePrivateAuthRequest(Socks5PrivateAuthRequest msg, ByteBuf out) {
        byte[] bytes = msg.privateToken();
        out.writeByte(0x01);
        out.writeByte(bytes.length);
        out.writeBytes(bytes);
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does encodePrivateAuthRequest() do?
encodePrivateAuthRequest() is a function in the netty codebase, defined in codec-socks/src/main/java/io/netty/handler/codec/socksx/v5/Socks5ClientEncoder.java.
Where is encodePrivateAuthRequest() defined?
encodePrivateAuthRequest() is defined in codec-socks/src/main/java/io/netty/handler/codec/socksx/v5/Socks5ClientEncoder.java at line 108.
What calls encodePrivateAuthRequest()?
encodePrivateAuthRequest() 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