Re: [heycam/webidl] Missing destruction sequence for ice agent. (#127)

There's more to this, because said [`"closed"`](http://w3c.github.io/webrtc-pc/#dom-rtciceconnectionstate-closed) state says: *"All of the RTCIceTransports are in the closed state."* which implies a shutdown-sequence's worth of underlying RTCIceTransports states in need of changing. In other words:

 1. `sender.transport.state`
 1. `sender.transport.transport.state` (not a typo!)
 1. `sender.rtcpTansport.state`
 1. `sender.rtcpTransport.transport.state`
 1. `receiver.transport.state`
 1. `receiver.transport.transport.state`
 1. `receiver.rtcpTansport.state`
 1. `receiver.rtcpTransport.transport.state`

all need to become `"closed"` at this point, I think, for each sender and receiver from `pc.getSenders()` and `pc.getReceivers()` respectively.

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/127#issuecomment-221442667

Received on Wednesday, 25 May 2016 00:38:45 UTC