Interface IceServerProperties

interface IceServerProperties {
    credential?: string;
    staticAuthSecret?: string;
    url: string;
    username?: string;
}

Properties

credential?: string

Set a credential for the ICE Server you want to use. This parameter should be defined only for TURN, not for STUN ICE Servers.

staticAuthSecret?: string

Secret for TURN authentication based on:

url: string

Set the url for the ICE Server you want to use. It should follow a valid format:

username?: string

Set a username for the ICE Server you want to use. This parameter should be defined only for TURN, not for STUN ICE Servers.