Skip to content

Support for ICE TCP (RFC 6544) #41

@aboba

Description

@aboba

At IETF 89, the minutes indicate that there was consensus to make ICE-TCP (RFC 6544) a MUST implement.

See:
http://www.ietf.org/proceedings/89/minutes/minutes-89-rtcweb (Transport discussion)
http://www.ietf.org/mail-archive/web/rtcweb/current/msg11958.html

However, there is no protocol attribute in RTCIceCandidate to indicate if the candidate uses UDP or TCP.

Fix:

dictionary RTCIceCandidate {
DOMString foundation;
unsigned long priority;
DOMString ip;
unsigned short port;
RTCIceProtocol protocol;
RTCIceCandidateType type;
DOMString? relatedAddress;
unsigned short? relatedPort;
};

enum RTCIceProtocol {
"udp:,
"tcp"
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions