Re: Issue 224: RTCIceGatherPolicy harmonization with WebRTC

[BA] In WebRTC 1.0 there an open issue (see:   https://github.com/w3c/webrtc-pc/issues/384  ), relating to harmonizing RTCIceTransportPolicy.none with the values defined in draft-ietf-rtcweb-jsep Section 4.1.1, which does not include "none" but does include "public", which is defined as follows:

"Candidates with private IP addresses [RFC1918] will be filtered out. This prevents exposure of internal network details, at the cost of requiring relay usage even for intranet calls, if the NAT does not allow hairpinning as described in [RFC4787], section 6."

Peter St. Andre said (see:  https://github.com/openpeer/ortc/issues/224 ):

"ORTC has:

enum RTCIceGatherPolicy {
"all",
"nohost",
"relay"
};

WebRTC has:

enum RTCIceTransportPolicy {
"none",
"relay",
"all"
};

Consistency might be desirable with respect to "none" vs. "nohost""

Received on Wednesday, 16 December 2015 17:30:14 UTC