Zodiac API Documentation - v0.0.3
    Preparing search index...

    Interface SignalingMessage

    interface SignalingMessage {
        type: "offer" | "answer" | "ice-candidate";
        data: RTCSessionDescriptionInit | RTCIceCandidate;
        from: string;
        to: string;
    }
    Index

    Properties

    Properties

    type: "offer" | "answer" | "ice-candidate"

    Type of signaling message

    data: RTCSessionDescriptionInit | RTCIceCandidate

    The WebRTC signaling data (offer, answer, or ICE candidate)

    from: string

    ID of the peer sending this message

    to: string

    ID of the peer that should receive this message