我构建了webrtc2sip的源代码,当我运行它时,我收到消息:
SSL is enabled :)
DTLS supported: yes
DTLS-SRTP supported: yes带有sipML5的页面用websocket连接到我的webrtc2sip网关,没有错误。在SIPml.Stack中,我使用了选项: websocket_proxy_url和地址:
ws://192.168.1.102:10060但是,当我发送一个邀请(音频电话)时,我会收到以下错误:
***[DOUBANGO ERROR]: function: "tdav_session_av_set_ro()"
file: "/Users/kamil/doubango/tinyDAV/src/tdav_session_av.c"
line: "1416"
MSG: Remote party requesting DTLS-DTLS (UDP/TLS/RTP/SAVPF) but this option is not enabled这会是证书的问题吗?或者使用openssl (1.0.2g)?
发布于 2016-04-16 18:49:38
对于使用SSL,正确的websocket_proxy_url应该是:
wss://{SSL Domain}:{WSS Port}其中:
{SSL Domain} is your Fully Qualified Domain Name associated with your SSL key和
{WSS Port} is the wss port you have configured in the webrtc2sip config.xml filehttps://stackoverflow.com/questions/36293964
复制相似问题