- From: Grigoriy Sushkov via GitHub <sysbot+gh@w3.org>
- Date: Wed, 04 Jan 2017 15:09:01 +0000
- To: public-webrtc@w3.org
sussh has just created a new issue for https://github.com/w3c/webrtc-pc: == This link is correct or not? == http://joxi.ru/bmo0VjWSxlBVo2 Offer: 1. AddStream(stream1); 1.1. onNegotiationneded(); 1.2. createOffer(onGotOffer); 1.3. onGotOffer(strOffer); // A offer 1.4. setLocalDescription(strOffer); // "stable" --> "have-local-offer" 1.5. sendSignaling(strOffer); // A offer ... 2. AddStream(stream2); 2.1. onNegotiationneded(); 2.2. createOffer(onGotOffer); 2.3. onGotOffer(strOffer); // B offer 2.4. setLocalDescription(strOffer); // "have-local-offer" --> "have-local-offer" 2.5. sendRemote(strOffer); // B offer ... 3. onGetRemote(strAnswer); // A answer 3.1. setRemoteDescription(strAnswer); // "have-local-offer" --> "stable" 3.2. ... ... 4. onGetRemote(strAnswer); // B answer 4.1. setRemoteDescription(strAnswer); // "stable" --> "stable" ?!?! 4.2. ... Please view or discuss this issue at https://github.com/w3c/webrtc-pc/issues/984 using your GitHub account
Received on Wednesday, 4 January 2017 15:09:07 UTC