Frida Docs Unified
    Preparing search index...

    Interface TcpConnectOptions

    interface TcpConnectOptions {
        family?: "ipv4" | "ipv6";
        host?: string;
        port: number;
        tls?: boolean;
    }
    Index

    Properties

    Properties

    family?: "ipv4" | "ipv6"

    Address family. Omit to determine based on the host specified.

    host?: string

    Host or IP address to connect to. Defaults to localhost.

    port: number

    IP port to connect to.

    tls?: boolean

    Whether to create a TLS connection. Defaults to false.