Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Section 3.14: RTCIceTransportEvent #161

Closed
aboba opened this issue Nov 15, 2014 · 1 comment
Closed

Section 3.14: RTCIceTransportEvent #161

aboba opened this issue Nov 15, 2014 · 1 comment
Labels

Comments

@aboba
Copy link
Contributor

aboba commented Nov 15, 2014

Since the onlocalcandidate Event Handler is now associated with the RTCIceGatherer rather than RTCIceTransport, Section 3.14 needs to be renamed to RTCIceGathererEvent and moved into Section 5.

@aboba
Copy link
Contributor Author

aboba commented Nov 15, 2014

Proposed text is as follows:

5.4 RTCIceGathererEvent

The icecandidate event of the RTCIceGatherer object uses the RTCIceGathererEvent interface.

Firing an RTCIceGathererEvent event named e with an RTCIceGatherCandidate candidate means that an event with the name e, which does not bubble (except where otherwise stated) and is not cancelable (except where otherwise stated), and which uses the RTCIceGathererEvent interface with the candidate attribute set to the new ICE candidate, must be created and dispatched at the given target.

dictionary RTCIceGathererEventInit : EventInit {
RTCIceGatherCandidate candidate;
};

[Constructor(DOMString type, RTCIceGathererEventInit eventInitDict)]
interface RTCIceGathererEvent : Event {
readonly attribute RTCIceGatherCandidate candidate;
};
5.4.1 Attributes

candidate of type RTCIceGatherCandidate, readonly
The candidate attribute is the RTCIceGatherCandidate object with the new ICE candidate that caused the event. If candidate is of type RTCIceCandidateComplete, there are no additional candidates.

5.4.2 Dictionary RTCIceGathererEventInit Members

candidate of type RTCIceGatherCandidate
The ICE candidate that caused the event.

@aboba aboba added the 1.1 label Nov 21, 2014
robin-raymond pushed a commit that referenced this issue Jan 22, 2015
#48

Update to the Statistics API, reflecting:
#85

Update on 'automatic' use of scalable video coding, as noted in:
#156

Update to the H.264 parameters, as noted in:
#158

Update to the 'Big Picture', as noted in:
#159

Added support for maxptime, as noted in:
#160

Changed 'RTCIceTransportEvent' to 'RTCIceGathererEvent' as noted in:
#161

Update to RTCRtpUnhandledEvent as noted in:
#163

Added support for RTCIceGatherer.state as noted in:
#164

Revised the text relating to RTCIceTransport.start() as noted in:
#166

Added text relating to DTLS interoperability with WebRTC 1.0, as noted in:
#167

Revised the text relating to RTCDtlsTransport.start() as noted in:
#168

Clarified handling of incoming connectivity checks by the RTCIceGatherer as noted in:
#170

Added a reference to the ICE consent specification, as noted in:
#171
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants