I have tested the following code on Windows7, but createOffer will throw the exception:
console.log(msg);
console.log("Send offer to peer");
});
var offer = pc.createOffer({has_audio:true, has_video:false});
pc.setLocalDescription(pc.SDP_OFFER, offer);
sendMessage({type: 'offer', sdp: offer.toSdp()});
pc.startIce()
But the above code works on Mac. Does chrome windows version has more strict limitation?
Thanks.
在 2012年10月10日星期三UTC+8下午9时37分18秒,PhistucK写道: