-
Notifications
You must be signed in to change notification settings - Fork 34
Closed
Description
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"
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels