obby-client for TypeScript
    Preparing search index...

    Type Alias TurnCredentials

    TURN/STUN credentials the SFU hands us on joined.

    These are short-lived, and nothing in the joined handshake or anywhere else in the signalling plane ever refreshes them mid-call. A call that outlives them loses its relay path with no warning; whoever integrates this signalling plane needs to leave and rejoin (or otherwise trigger a fresh joined) before that happens, since nothing here does it automatically.

    type TurnCredentials = {
        password: string;
        urls: string[];
        username: string;
    }
    Index
    password: string

    The short-lived TURN password.

    urls: string[]

    The TURN/STUN server URLs to try, in order.

    username: string

    The short-lived TURN username.