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

    Interface WebRtcTransportConfig

    Configuration applied to WebRTC transports created by a MediaRouter (SFU server side).

    interface WebRtcTransportConfig {
        enableSctp?: boolean;
        initialAvailableOutgoingBitrate?: number;
        listenInfos?: TransportListenInfo[];
        maxIncomingBitrate?: number;
    }
    Index

    Properties

    enableSctp?: boolean

    Whether to enable SCTP (data channels) on the transport. Defaults to false.

    initialAvailableOutgoingBitrate?: number

    Initial estimate of available outgoing bitrate, in bits per second.

    listenInfos?: TransportListenInfo[]

    Listen IPs/protocols the transport binds. Defaults to DEFAULT_LISTEN_INFOS.

    maxIncomingBitrate?: number

    If set, caps the transport's incoming bitrate, in bits per second.