admin管理员组文章数量:1350369
I'm starting to learn WebRTC and have a working prototype using copy/paste here: (the prototype is meant to be run in two browser windows, unlike many other examples that run both sides in one window)
I understand that WebRTC is peer-to-peer and a I need a connection for every set of peers. However, I'm starting to think about signalling (no code yet) and I'm wondering about the "offer". In my prototype I see that clicking "create offer" multiple times results in the same string. So, if have client A, and connect to client B and C, it looks like I will send the same "offer" to both of them. If that's correct, it makes the first step of signalling easy - client A will always have the same offer, and I just have to gather responses from connected peers.
Is this a correct understanding?
I'm starting to learn WebRTC and have a working prototype using copy/paste here: https://github./aerik/webrtc (the prototype is meant to be run in two browser windows, unlike many other examples that run both sides in one window)
I understand that WebRTC is peer-to-peer and a I need a connection for every set of peers. However, I'm starting to think about signalling (no code yet) and I'm wondering about the "offer". In my prototype I see that clicking "create offer" multiple times results in the same string. So, if have client A, and connect to client B and C, it looks like I will send the same "offer" to both of them. If that's correct, it makes the first step of signalling easy - client A will always have the same offer, and I just have to gather responses from connected peers.
Is this a correct understanding?
Share Improve this question asked Dec 9, 2015 at 22:22 AerikAerik 2,3171 gold badge29 silver badges41 bronze badges1 Answer
Reset to default 11It is not, a peer connection will generate different origin values for different offers (o=
in the SDP).
Same peer connection offers will contain same <sess-id>
but different <sess-version>
.
Different peer connections will produce different <sess-id>
You can check it with the following snippet in Chrome:
var a = new RTCPeerConnection({});
a.createOffer().then(offer => $('#11').text(offer.sdp));
a.createOffer().then(offer => $('#12').text(offer.sdp));
var b = new RTCPeerConnection({});
b.createOffer().then(offer => $('#21').text(offer.sdp));
b.createOffer().then(offer => $('#22').text(offer.sdp));
<script src="https://ajax.googleapis./ajax/libs/jquery/2.1.1/jquery.min.js"></script>
First PC, first offer: <span id="11"></span><br/>
First PC, second offer: <span id="12"></span><br/>
Second PC, first offer: <span id="21"></span><br/>
Second PC, second offer: <span id="22"></span><br/>
You can find more info about the SDP in https://datatracker.ietf/doc/html/rfc4566#page-11
本文标签: javascriptCan I reuse an quotofferquot in WebRTC for mulitple connectionsStack Overflow
版权声明:本文标题:javascript - Can I re-use an "offer" in WebRTC for mulitple connections? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743877297a2554559.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论