@tikoci/centrs
    Preparing search index...

    Interface BtestServerRequest

    interface BtestServerRequest {
        allocateUdpPortsFrom?: number;
        authenticate?: boolean;
        bind?: string;
        durationMs?: number;
        env?: Record<string, string | undefined>;
        intervalMs?: number;
        maxSessions?: number;
        onBound?: (port: number) => void;
        onSession?: (record: BtestSessionRecord) => void;
        password?: string;
        port?: number;
        signal?: AbortSignal;
        username?: string;
    }
    Index

    Properties

    allocateUdpPortsFrom?: number
    authenticate?: boolean
    bind?: string
    durationMs?: number
    env?: Record<string, string | undefined>
    intervalMs?: number
    maxSessions?: number
    onBound?: (port: number) => void

    Called once with the bound control port (test hook).

    onSession?: (record: BtestSessionRecord) => void

    Live per-session-event callback (text/csv streaming).

    password?: string
    port?: number
    signal?: AbortSignal
    username?: string