app webrtc Failed to send STUN ping err=-1 Received STUN request with bad M-I from

ios 和安卓 这两个问题产生的原因就是本地生成answer SDP的时候产生的ice-pwd中含有'+'这个符号和'/'这个符号导致的sdp密码效验失败(ios含有+才会报错)

我们研究webrtc源码可以发现,它内部含有一套自己生成随机串的算法

见 helpers.cc

中CreateRandomString

 

是根据kBase64生成随机串的

static const char kBase64[64] = {

'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M',

'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z',

'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm',

'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z',

'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/'};

可以发现有+和/这个符号

解决方案:

我们替换kBase64中+和/这2个符号为<和>,再次编译,解决!

你可能感兴趣的:(webrtc,ios,webrtc,android,bug,源码)