mozilla
Your Search Results

    RTCSessionDescriptionCallback

    The RTCSessionDescriptionCallback is passed into the RTCPeerConnection object when requesting it create offers or answers.

    Example

    var pc = new RTCPeerConnection();
    var descriptionCallback = function(offer) {
      pc.setLocalDescription(offer);
    }
    pc.createOffer(descriptionCallback);
    

    Document Tags and Contributors

    Contributors to this page: wesj, teoli
    Last updated by: teoli,