@ken-all/kenall
    Preparing search index...

    Interface RemoteAddress

    A RemoteAddress object stores the IP address the request originated from, as observed by the API server.

    interface RemoteAddress {
        address: string;
        type: "v4" | "v6";
    }
    Index
    address: string

    The IP address in its textual representation.

    Example: "192.0.2.1"

    type: "v4" | "v6"

    The kind of the IP address.

    • "v4" for an IPv4 address
    • "v6" for an IPv6 address