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

    Interface WebRtcTransportParams

    Transport parameters returned to a client so it can create a matching client-side transport and connect it (server → client handshake payload).

    interface WebRtcTransportParams {
        dtlsParameters: DtlsParameters;
        iceCandidates: IceCandidate[];
        iceParameters: IceParameters;
        id: string;
        sctpParameters?: SctpParameters;
    }
    Index

    Properties

    dtlsParameters: DtlsParameters

    DTLS parameters (role and fingerprints).

    iceCandidates: IceCandidate[]

    Server-gathered ICE candidates.

    iceParameters: IceParameters

    ICE parameters (ufrag/pwd) for the transport.

    id: string

    Server-side transport id.

    sctpParameters?: SctpParameters

    SCTP parameters, present only when SCTP/data channels are enabled.