Interface QWBPCandidate

Represents an ICE candidate in QWBP format

interface QWBPCandidate {
    ip: string;
    port: number;
    protocol: "udp" | "tcp";
    tcpType?: "passive" | "active" | "so";
    type: "host" | "srflx";
}

Properties

ip: string

IP address or mDNS hostname

port: number

Port number (1-65535)

protocol: "udp" | "tcp"

Transport protocol

tcpType?: "passive" | "active" | "so"

TCP type (only for TCP candidates)

type: "host" | "srflx"

Candidate type: host or server-reflexive