Interface CallServerTypeWebrtc

A WebRTC server. Subtype of CallServerType.

interface CallServerTypeWebrtc {
    @type: "callServerTypeWebrtc";
    password: string;
    supports_stun?: boolean;
    supports_turn?: boolean;
    username: string;
}

Properties

@type: "callServerTypeWebrtc"
password: string

Authentication password.

supports_stun?: boolean

True, if the server supports STUN.

supports_turn?: boolean

True, if the server supports TURN.

username: string

Username to be used for authentication.