現在、WebRTCで遊んでいます。私の目標は、2 つのブラウザー間でデータチャネルをセットアップすることです。Chrome-Chrome はうまく機能しています。今、私は Firefox-Firefox で遊んでいます。ここに私の現在のコードからの MEW があります:
var servers = { "iceServers": [{ "url": "stun:stun.l.google.com:19302" }] };
var RTCPeerConnection = window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
var SessionDescription = window.mozRTCSessionDescription || window.RTCSessionDescription;
var IceCandidate = window.mozRTCIceCandidate || window.RTCIceCandidate;
var peerConnection = new RTCPeerConnection(servers, { optional: [{ RtpDataChannels: true }] });
peerConnection.onicecandidate = function (event) {
peerConnection.onicecandidate = null;
console.log('ICE Candidate:', JSON.stringify(event.candidate))
};
var channel = peerConnection.createDataChannel("sendDataChannel", {reliable: false});
peerConnection.createOffer(
function (offer) {
peerConnection.setLocalDescription(offer);
}, function (e) { }
);
が呼び出されるとすぐsetLocalDescription
に、関数onicecandidate
が呼び出されます (予想どおり)。Chrome 36 では、次のevent.icecandidate
ようなものです。
{"sdpMLineIndex":0,"sdpMid":"audio","candidate":"a=candidate:3430859439 1 udp 2122260223 xxx.xxx.xxx.xxx 59773 typ host generation 0\r\n"}
Firefoxevent.icecandidate
ではnull
. しかし、接続を確立するには、シグナリング チャネルを介してその ICE 候補を送信する必要があります。