WebRTC Peerconnection:使用哪个候选IP流?

时间:2014-01-08 19:23:49

标签: ip webrtc flow sdp

我目前正在开发一个用于webrtc会话的监控工具,用于调查从调用者到被调用者的转移SDP,反之亦然。不幸的是我无法确定哪个ip流程真的被使用,因为每个会话建立有10个候选行,并且某些候选者被推入PC后会以某种方式建立会话。

有没有办法弄清楚候选流程集正在使用哪个流程?

2 个答案:

答案 0 :(得分:1)

我自己解决了这个问题! :)

有一个名为peerConnection.getStats(callback);

的函数

这将提供有关正在进行的对等连接的大量信息。

再见

答案 1 :(得分:0)

我想找出同样的东西,所以写了一个小函数,它返回一个解决候选人详细信息的承诺:

function getConnectionDetails(peerConnection){


  var connectionDetails = {};   // the final result object.

  if(window.chrome){  // checking if chrome

    var reqFields = [   'googLocalAddress',
                        'googLocalCandidateType',   
                        'googRemoteAddress',
                        'googRemoteCandidateType'
                    ];
    return new Promise(function(resolve, reject){
      peerConnection.getStats(function(stats){
        var filtered = stats.result().filter(function(e){return e.id.indexOf('Conn-audio')==0 && e.stat('googActiveConnection')=='true'})[0];
        if(!filtered) return reject('Something is wrong...');
        reqFields.forEach(function(e){connectionDetails[e.replace('goog', '')] = filtered.stat(e)});
        resolve(connectionDetails);
      });
    });

  }else{  // assuming it is firefox
    var stream = peerConnection.getLocalStreams()[0];
    if(!stream || !stream.getTracks()[0]) stream = peerConnection.getRemoteStreams()[0];
    if(!stream) Promise.reject('no stream found')
    var track = stream.getTracks()[0];
    if(!track)  Promise.reject('No Media Tracks Found');
    return peerConnection.getStats(track).then(function(stats){
        var selectedCandidatePair = stats[Object.keys(stats).filter(function(key){return stats[key].selected})[0]]
          , localICE = stats[selectedCandidatePair.localCandidateId]
          , remoteICE = stats[selectedCandidatePair.remoteCandidateId];
        connectionDetails.LocalAddress = [localICE.ipAddress, localICE.portNumber].join(':');
        connectionDetails.RemoteAddress = [remoteICE.ipAddress, remoteICE.portNumber].join(':');
        connectionDetails.LocalCandidateType = localICE.candidateType;
        connectionDetails.RemoteCandidateType = remoteICE.candidateType;
        return connectionDetails;
    });

  }
}