0

我构建了 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) ?

4

1 回答 1

1

对于使用 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 file
于 2016-04-16T18:49:38.307 回答