We have defined `hostCandidate` as a `DOMString`: > `hostCandidate` of type `DOMString` > The hostCandidate attribute is the local IP address and port used to communicate with the STUN or TURN server. ``` partial dictionary RTCIceGathererIceErrorEventInit : EventInit { DOMString hostCandidate; }; ``` But shouldn't it be the actual structure: ``` partial dictionary RTCIceGathererIceErrorEventInit : EventInit { RTCIceGatherCandidate hostCandidate; }; ``` Seems it would be easier to correlate if we made an exact description. Also, what would happen if there are no host candidates (privacy filter)? ``` enum RTCIceGatherPolicy { "all", "nohost", "relay" }; ``` > `nohost` > The RTCIceGatherer gathers all ICE candidate types except for host candidates.
We have defined
hostCandidateas aDOMString:But shouldn't it be the actual structure:
Seems it would be easier to correlate if we made an exact description.
Also, what would happen if there are no host candidates (privacy filter)?