@adcp/sdk API Reference - v14.0.0-beta.6
    Preparing search index...

    Interface SsrfFetchResult

    interface SsrfFetchResult {
        url: string;
        status: number;
        headers: Record<string, string>;
        body: Uint8Array;
        pinnedAddress?: string;
        pinnedFamily?: 4 | 6;
        connectionPinned: boolean;
    }
    Index

    Properties

    url: string
    status: number
    headers: Record<string, string>

    Response headers, lowercased.

    body: Uint8Array

    Raw response body bytes (empty Uint8Array if no body).

    pinnedAddress?: string

    The validated IP address. Absent when a trusted fetch implementation owns DNS.

    pinnedFamily?: 4 | 6

    The validated address family. Absent when a trusted fetch implementation owns DNS.

    connectionPinned: boolean

    Whether the internal undici dispatcher pinned the connection to pinnedAddress.