RTCForge API Reference v1.1.1
    Preparing search index...

    Interface IceServerConfig

    ICE server descriptor passed through to the browser's RTCPeerConnection. Mirrors the shape of the standard RTCIceServer dictionary.

    interface IceServerConfig {
        credential?: string;
        urls: string | string[];
        username?: string;
    }
    Index

    Properties

    credential?: string

    Password/credential for a TURN server, if required.

    urls: string | string[]

    One or more STUN/TURN URLs, e.g. "stun:stun.l.google.com:19302".

    username?: string

    Username credential for a TURN server, if required.