- From: Bernard Aboba <Bernard.Aboba@microsoft.com>
- Date: Wed, 2 Apr 2014 00:36:16 +0000
- To: "public-ortc@w3.org" <public-ortc@w3.org>
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" }
Received on Wednesday, 2 April 2014 00:36:45 UTC