@tabcat/zzzync
    Preparing search index...

    Interface DialOptions

    interface DialOptions {
        acceptTimeoutMs?: number;
        ackTimeoutMs?: number;
        auth?: () => | Uint8Array<ArrayBufferLike>
        | Promise<Uint8Array<ArrayBufferLike>>;
        onProgress?: ProgressEventListener<DialProgressEvents>;
        signal?: AbortSignal;
        writeTimeoutMs?: number;
    }

    Hierarchy

    Index
    acceptTimeoutMs?: number

    Deadline (ms) waiting for the handler to accept the record; covers allow.record, not the per-step deadline.

    ackTimeoutMs?: number

    Deadline (ms) waiting for the handler to close its write side after the CAR.

    auth?: () => Uint8Array<ArrayBufferLike> | Promise<Uint8Array<ArrayBufferLike>>

    Produces the optional auth frame (a delegation-chain CAR) sent after the ipns key.

    onProgress?: ProgressEventListener<DialProgressEvents>
    signal?: AbortSignal
    writeTimeoutMs?: number

    Per-step deadline (ms) for each read/write step: handshake, record, CAR chunk.