why is everyone so set on trying to get jssip working if sip.js works fine?<span></span><br><br>On Thursday, June 11, 2015, Victor Medina &lt;<a href="mailto:victor.medina@cibersys.com">victor.medina@cibersys.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_default" style="font-family:courier new,monospace">OK... think I found it.<br><br><br></div><div class="gmail_default" style="font-family:courier new,monospace">Taken from... <a href="https://github.com/versatica/JsSIP/issues/320" target="_blank">https://github.com/versatica/JsSIP/issues/320</a><br><br><br><p>Currently SIP UA using JsSIP library writes token RTP/SAVPF on SDP m 
line(s) of outgoing INVITE requests to describe RTP/SAVPF RTP profile, 
e.g.,</p>

<p>m=audio 35070 RTP/SAVPF 111 103 104 9 0 8 106 105 13 126</p>

<p>According to RFC 5764 this in incorrect.  The token shall be UDP/TLS/RTP/SAVPF instead:</p>

<ol><li>
<p>Session Description for RTP/SAVP over DTLS</p>

<p>This specification defines new tokens to describe the protocol used 
in SDP media descriptions (&quot;m=&quot; lines and their associated  parameters).
  The new values defined for the proto field are:</p>

<p>o  When a RTP/SAVP or RTP/SAVPF [RFC5124] stream is transported over<br>
  DTLS with the Datagram Congestion Control Protocol (DCCP), then<br>
  the token SHALL be DCCP/TLS/RTP/SAVP or DCCP/TLS/RTP/SAVPF<br>
  respectively.</p>

<p>o  When a RTP/SAVP or RTP/SAVPF stream is transported over DTLS with<br>
  UDP, the token SHALL be UDP/TLS/RTP/SAVP or UDP/TLS/RTP/SAVPF<br>
  respectively.</p>
</li></ol>

<p>Correct behavior can be achieved by the diff below (perhaps a check 
should be added that description type is &quot;offer&quot; and that sdp is 
defined). </p>

<p>I would like to make JsSIP UA to use the correct profile token either
 always or if configured to do so.  Current non-standard behavior makes 
outgoing calls to fail if callee only understands standardized token of 
RTP/SAVPF RTP profile.</p><p><br></p><p>added this. Will try later. <br></p>        description.sdp = description.sdp.replace(/ RTP\/SAVP/gi, &quot; UDP/TLS/RTP/SAVP&quot;);<br>

this.pc.setLocalDescription(
    description);<p><br></p><p>Would somebody try it out? Confirm maybe? Line starting is.. 22241, on JsSIP latest from Github, 0.6.30.</p><p><br></p><p>RTCPeerConnection.prototype.setLocalDescription = function (description, successCallback, failureCallback) {<br>    debug(&#39;setLocalDescription()&#39;);<br><br>    var self = this;<br>    <br>    // VICTOR Modified/added this...<br>    description.sdp = description.sdp.replace(&quot; RTP/SAVPF&quot;, &quot; UDP/TLS/RTP/SAVP&quot;);<br>    this.pc.setLocalDescription(description);<br>    // ENDS Here<br></p><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">2015-06-11 6:52 GMT-04:30 Victor Medina <span dir="ltr">&lt;<a href="javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;victor.medina@cibersys.com&#39;);" target="_blank">victor.medina@cibersys.com</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_default" style="font-family:courier new,monospace">I rebuilt<br><br>freeswitch@internal&gt; version<br>FreeSWITCH Version 1.7.0+git~20150611T050046Z~67ed8f4260~64bit (git 67ed8f4 2015-06-11 05:00:46Z 64bit)<br><br>freeswitch@internal&gt;<br><br></div><div class="gmail_default" style="font-family:courier new,monospace">Ill Test it.<br><br></div><div class="gmail_default" style="font-family:courier new,monospace">Any way... advice is welcome. Im very grateful for your help, patience and experience.<br></div><div class="gmail_default" style="font-family:courier new,monospace"><br></div></div><div><div><div class="gmail_extra"><br><div class="gmail_quote">2015-06-11 6:42 GMT-04:30 Victor Medina <span dir="ltr">&lt;<a href="javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;victor.medina@cibersys.com&#39;);" target="_blank">victor.medina@cibersys.com</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_default" style="font-family:courier new,monospace">Trying both demos, and only calling 9196 (with or without videos) and an external phone (my cell) seems to me that Sip.js without further configuration works! Have not tried callin to and from another ext. And I am only using the demo site, So I cannot tweak it.<br><br></div><div class="gmail_default" style="font-family:courier new,monospace">If you want I can provide credentials for you to test.<br></div></div><div><div><div class="gmail_extra"><br><div class="gmail_quote">2015-06-11 6:35 GMT-04:30 Michael Jerris <span dir="ltr">&lt;<a href="javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;mike@jerris.com&#39;);" target="_blank">mike@jerris.com</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">so are you saying sip.js works and jssip doesn&#39;t?<div><div><span></span><br><br>On Thursday, June 11, 2015, Victor Medina &lt;<a href="javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;victor.medina@cibersys.com&#39;);" target="_blank">victor.medina@cibersys.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_default" style="font-family:courier new,monospace">Michael. Denis. <br><br></div><div class="gmail_default" style="font-family:courier new,monospace">First of all. Good Morning guys.<br><br><br></div><div class="gmail_default" style="font-family:courier new,monospace">I am having some very similar problems to him.<br></div><div class="gmail_default" style="font-family:courier new,monospace"><br></div><div class="gmail_default" style="font-family:courier new,monospace">1.- I rebuilt Tuesday.<br></div><div class="gmail_default" style="font-family:courier new,monospace">2.- Server is on a 1gb connection, no nat.<br></div><div class="gmail_default" style="font-family:courier new,monospace">3.- Im behind a Nat @home<br></div><div class="gmail_default" style="font-family:courier new,monospace">4.- Dev team are JsSIP (Im honestly starting to hate it!)<br><br></div><div class="gmail_default" style="font-family:courier new,monospace">When I try 9196 with Video enable it works... for a while, then call is dropped<br></div><div class="gmail_default" style="font-family:courier new,monospace">When I try 9196 without Video it will not work, no rtp.<br><br></div><div class="gmail_default" style="font-family:courier new,monospace">What Im seeing is JsSIP setting up act/pass and Freeswitch using active, then JsSip complaining.<br></div><div class="gmail_default" style="font-family:courier new,monospace">If I try with Sip.js, it will set up act/pass, Freeswitch will setup active, and coversation will proceed.<br><br></div><div class="gmail_default" style="font-family:courier new,monospace">JsSIP seems to send a=group:BUNDLE audio video even if its an Audio only, JsSIP seems to always use RTP/SAVPF</div><div class="gmail_default" style="font-family:courier new,monospace">Sip.JS sees to a=group:BUNDLE audio video ONLY if its a video call, if its audio in only sends audio, Sip.js uses UDP/TLS/RTP/SAVPF<br><div class="gmail_default" style="font-family:courier new,monospace"><br></div></div><div class="gmail_default" style="font-family:courier new,monospace"><br></div><div class="gmail_default" style="font-family:courier new,monospace"></div><div class="gmail_default" style="font-family:courier new,monospace">Is there any trick?, settings? good advice? in the sip profile that could guaranteed or at least could provide some basic safety or assurance that wss/ws will work as expected? Servers most of the time will not be behind a NAT firewall. Most clients will do. Browsers will usually have Opus, VP8 and G711. And different js library will act pretty different. <br><br>Im asking this as the man behind the FS servers =) , since must of the time they argue its my fault!, and not library/browser behaviour. <br>Im willing to accept any advice on your side guys.<br><br></div><div class="gmail_default" style="font-family:courier new,monospace">As usual thanks! Every advice comment is welcome.<br></div><div class="gmail_default" style="font-family:courier new,monospace"><br><br></div><div class="gmail_default" style="font-family:courier new,monospace">The invite:<br></div><div class="gmail_default" style="font-family:courier new,monospace"><br>INVITE <a>sip:9196@conference2.cibersys.com</a> SIP/2.0<br>Via: SIP/2.0/WSS l3nbdffa0opf.invalid;branch=z9hG4bK7927680<br>Max-Forwards: 69<br>To: &lt;<a>sip:9196@conference2.cibersys.com</a>&gt;<br>From: &lt;<a>sip:1000@conference2.cibersys.com</a>&gt;;tag=5hp7n36gjm<br>Call-ID: jnicb84inognuej1f5hh<br>CSeq: 6469 INVITE<br>X-Can-Renegotiate: true<br>Contact: &lt;sip:4iv564gg@l3nbdffa0opf.invalid;transport=ws;ob&gt;<br>Content-Type: application/sdp<br>Allow: INVITE,ACK,CANCEL,BYE,UPDATE,MESSAGE,OPTIONS<br>Supported: ice,outbound<br>User-Agent: JsSIP 0.6.30<br>Content-Length: 4285<br><br>v=0<br>o=- 2921960164244051031 2 IN IP4 127.0.0.1<br>s=-<br>t=0 0<br>a=group:BUNDLE audio video<br>a=msid-semantic: WMS DZbwVhxdAQdrx5Y6oxT8gGV25DRfrP8tlZ14<br>m=audio 34582 RTP/SAVPF 111 103 104 9 0 8 106 105 13 126<br>c=IN IP4 200.82.236.209<br>a=rtcp:45589 IN IP4 200.82.236.209<br>a=candidate:2999745851 1 udp <a href="tel:2122194687" value="+12122194687" target="_blank">2122194687</a> 192.168.56.1 54329 typ host generation 0<br>a=candidate:1013097898 1 udp <a href="tel:2122129151" value="+12122129151" target="_blank">2122129151</a> 10.0.1.8 54330 typ host generation 0<br>a=candidate:2999745851 2 udp <a href="tel:2122194686" value="+12122194686" target="_blank">2122194686</a> 192.168.56.1 54331 typ host generation 0<br>a=candidate:1013097898 2 udp <a href="tel:2122129150" value="+12122129150" target="_blank">2122129150</a> 10.0.1.8 54332 typ host generation 0<br>a=candidate:50610563 2 udp 1685921534 200.82.236.209 45589 typ srflx raddr 10.0.1.8 rport 54332 generation 0<br>a=candidate:50610563 1 udp 1685921535 200.82.236.209 34582 typ srflx raddr 10.0.1.8 rport 54330 generation 0<br>a=candidate:<a href="tel:4233069003" value="+14233069003" target="_blank">4233069003</a> 1 tcp 1518214911 192.168.56.1 0 typ host tcptype active generation 0<br>a=candidate:1927371098 1 tcp 1518149375 10.0.1.8 0 typ host tcptype active generation 0<br>a=candidate:<a href="tel:4233069003" value="+14233069003" target="_blank">4233069003</a> 2 tcp 1518214910 192.168.56.1 0 typ host tcptype active generation 0<br>a=candidate:1927371098 2 tcp 1518149374 10.0.1.8 0 typ host tcptype active generation 0<br>a=ice-ufrag:j2iFDE+TMp4by5ts<br>a=ice-pwd:gW3Wu5v5qyW5vfka7YaM4KFt<br>a=fingerprint:sha-256 34:95:A3:46:CF:B5:8C:3B:5C:E9:1C:80:39:54:67:7F:AA:FA:10:E3:2D:64:0F:00:43:EB:D2:FE:4A:58:0A:DC<br>a=setup:actpass<br>a=mid:audio<br>a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level<br>a=extmap:3 <a href="http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time" target="_blank">http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time</a><br>a=sendrecv<br>a=rtcp-mux<br>a=rtpmap:111 opus/48000/2<br>a=fmtp:111 minptime=10; useinbandfec=1<br>a=rtpmap:103 ISAC/16000<br>a=rtpmap:104 ISAC/32000<br>a=rtpmap:9 G722/8000<br>a=rtpmap:0 PCMU/8000<br>a=rtpmap:8 PCMA/8000<br>a=rtpmap:106 CN/32000<br>a=rtpmap:105 CN/16000<br>a=rtpmap:13 CN/8000<br>a=rtpmap:126 telephone-event/8000<br>a=maxptime:60<br>a=ssrc:4294620237 cname:HxX5s5jUcyIryP5Z<br>a=ssrc:4294620237 msid:DZbwVhxdAQdrx5Y6oxT8gGV25DRfrP8tlZ14 c35ff906-5ee6-433a-9f58-1fd28cc05605<br>a=ssrc:4294620237 mslabel:DZbwVhxdAQdrx5Y6oxT8gGV25DRfrP8tlZ14<br>a=ssrc:4294620237 label:c35ff906-5ee6-433a-9f58-1fd28cc05605<br>m=video 41790 RTP/SAVPF 100 116 117 96<br>c=IN IP4 200.82.236.209<br>a=rtcp:42265 IN IP4 200.82.236.209<br>a=candidate:2999745851 1 udp <a href="tel:2122194687" value="+12122194687" target="_blank">2122194687</a> 192.168.56.1 54333 typ host generation 0<br>a=candidate:1013097898 1 udp <a href="tel:2122129151" value="+12122129151" target="_blank">2122129151</a> 10.0.1.8 54334 typ host generation 0<br>a=candidate:2999745851 2 udp <a href="tel:2122194686" value="+12122194686" target="_blank">2122194686</a> 192.168.56.1 54335 typ host generation 0<br>a=candidate:1013097898 2 udp <a href="tel:2122129150" value="+12122129150" target="_blank">2122129150</a> 10.0.1.8 54336 typ host generation 0<br>a=candidate:50610563 1 udp 1685921535 200.82.236.209 41790 typ srflx raddr 10.0.1.8 rport 54334 generation 0<br>a=candidate:50610563 2 udp 1685921534 200.82.236.209 42265 typ srflx raddr 10.0.1.8 rport 54336 generation 0<br>a=candidate:<a href="tel:4233069003" value="+14233069003" target="_blank">4233069003</a> 1 tcp 1518214911 192.168.56.1 0 typ host tcptype active generation 0<br>a=candidate:1927371098 1 tcp 1518149375 10.0.1.8 0 typ host tcptype active generation 0<br>a=candidate:<a href="tel:4233069003" value="+14233069003" target="_blank">4233069003</a> 2 tcp 1518214910 192.168.56.1 0 typ host tcptype active generation 0<br>a=candidate:1927371098 2 tcp 1518149374 10.0.1.8 0 typ host tcptype active generation 0<br>a=ice-ufrag:j2iFDE+TMp4by5ts<br>a=ice-pwd:gW3Wu5v5qyW5vfka7YaM4KFt<br>a=fingerprint:sha-256 34:95:A3:46:CF:B5:8C:3B:5C:E9:1C:80:39:54:67:7F:AA:FA:10:E3:2D:64:0F:00:43:EB:D2:FE:4A:58:0A:DC<br>a=setup:actpass<br>a=mid:video<br>a=extmap:2 urn:ietf:params:rtp-hdrext:toffset<br>a=extmap:3 <a href="http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time" target="_blank">http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time</a><br>a=extmap:4 urn:3gpp:video-orientation<br>a=sendrecv<br>a=rtcp-mux<br>a=rtpmap:100 VP8/90000<br>a=rtcp-fb:100 ccm fir<br>a=rtcp-fb:100 nack<br>a=rtcp-fb:100 nack pli<br>a=rtcp-fb:100 goog-remb<br>a=rtpmap:116 red/90000<br>a=rtpmap:117 ulpfec/90000<br>a=rtpmap:96 rtx/90000<br>a=fmtp:96 apt=100<br>a=ssrc-group:FID <a href="tel:4013710955" value="+14013710955" target="_blank">4013710955</a> 1664537724<br>a=ssrc:<a href="tel:4013710955" value="+14013710955" target="_blank">4013710955</a> cname:HxX5s5jUcyIryP5Z<br>a=ssrc:<a href="tel:4013710955" value="+14013710955" target="_blank">4013710955</a> msid:DZbwVhxdAQdrx5Y6oxT8gGV25DRfrP8tlZ14 746564c8-940d-424e-8a4d-20aad74152ac<br>a=ssrc:<a href="tel:4013710955" value="+14013710955" target="_blank">4013710955</a> mslabel:DZbwVhxdAQdrx5Y6oxT8gGV25DRfrP8tlZ14<br>a=ssrc:<a href="tel:4013710955" value="+14013710955" target="_blank">4013710955</a> label:746564c8-940d-424e-8a4d-20aad74152ac<br>a=ssrc:1664537724 cname:HxX5s5jUcyIryP5Z<br>a=ssrc:1664537724 msid:DZbwVhxdAQdrx5Y6oxT8gGV25DRfrP8tlZ14 746564c8-940d-424e-8a4d-20aad74152ac<br>a=ssrc:1664537724 mslabel:DZbwVhxdAQdrx5Y6oxT8gGV25DRfrP8tlZ14<br>a=ssrc:1664537724 label:746564c8-940d-424e-8a4d-20aad74152ac<br><br><br></div><div class="gmail_default" style="font-family:courier new,monospace">Freeswitch response:<br><br>SIP/2.0 200 OK<br>Via: SIP/2.0/WSS l3nbdffa0opf.invalid;branch=z9hG4bK4050936;received=200.82.236.209;rport=45823<br>From: &lt;<a>sip:1000@conference2.cibersys.com</a>&gt;;tag=5hp7n36gjm<br>To: &lt;<a>sip:9196@conference2.cibersys.com</a>&gt;;tag=6g97NQgHK9NFD<br>Call-ID: jnicb84inognuej1f5hh<br>CSeq: 6470 INVITE<br>Contact: &lt;sip:9196@167.114.64.133:5060;transport=udp&gt;<br>User-Agent: FreeSWITCH-mod_sofia/1.7.0+git~20150609T042756Z~18063a4754~64bit<br>Accept: application/sdp<br>Allow: INVITE, ACK, BYE, CANCEL, OPTIONS, MESSAGE, INFO, UPDATE, REGISTER, REFER, NOTIFY, PUBLISH, SUBSCRIBE<br>Supported: timer, path, replaces<br>Allow-Events: talk, hold, conference, presence, as-feature-event, dialog, line-seize, call-info, sla, include-session-description, presence.winfo, message-summary, refer<br>Session-Expires: 120;refresher=uas<br>Content-Type: application/sdp<br>Content-Disposition: session<br>Content-Length: 1493<br>Remote-Party-ID: &quot;9196&quot; &lt;<a>sip:9196@conference2.cibersys.com</a>&gt;;party=calling;privacy=off;screen=no<br><br>v=0<br>o=FreeSWITCH 1433989971 1433989972 IN IP4 167.114.64.133<br>s=FreeSWITCH<br>c=IN IP4 167.114.64.133<br>t=0 0<br>a=msid-semantic: WMS 0iktbV3nM7dQBZdt40DBM4ePZfgN4XcU<br>m=audio 26946 RTP/SAVPF 0 126<br>a=rtpmap:0 PCMU/8000<br>a=rtpmap:126 telephone-event/8000<br>a=ptime:20<br>a=fingerprint:sha-256 68:8F:C5:D4:DB:3B:F2:05:F6:D2:A0:3A:0F:3E:BF:A5:71:3B:36:EA:9B:CF:23:E4:B2:A9:7C:FC:FB:47:5B:9E<br>a=setup:active<br>a=rtcp-mux<br>a=rtcp:26946 IN IP4 167.114.64.133<br>a=ice-ufrag:mlzYgDD5JKJDxLou<br>a=ice-pwd:YtrWsCxoRPNUbuSnGhcMKFHk<br>a=candidate:<a href="tel:4322851414" value="+14322851414" target="_blank">4322851414</a> 1 udp 659136 167.114.64.133 26946 typ host generation 0<br>a=ssrc:1635618133 cname:6ne788lL6orydvR7<br>a=ssrc:1635618133 msid:0iktbV3nM7dQBZdt40DBM4ePZfgN4XcU a0<br>a=ssrc:1635618133 mslabel:0iktbV3nM7dQBZdt40DBM4ePZfgN4XcU<br>a=ssrc:1635618133 label:0iktbV3nM7dQBZdt40DBM4ePZfgN4XcUa0<br>m=video 31094 RTP/SAVPF 100<br>b=AS:2048<br>a=rtpmap:100 VP8/90000<br>a=fingerprint:sha-256 68:8F:C5:D4:DB:3B:F2:05:F6:D2:A0:3A:0F:3E:BF:A5:71:3B:36:EA:9B:CF:23:E4:B2:A9:7C:FC:FB:47:5B:9E<br>a=setup:active<br>a=rtcp-mux<br>a=rtcp:31094 IN IP4 167.114.64.133<br>a=rtcp-fb:100 ccm fir<br>a=rtcp-fb:100 nack<br>a=rtcp-fb:100 nack pli<br>a=ssrc:918630538 cname:6ne788lL6orydvR7<br>a=ssrc:918630538 msid:0iktbV3nM7dQBZdt40DBM4ePZfgN4XcU v0<br>a=ssrc:918630538 mslabel:0iktbV3nM7dQBZdt40DBM4ePZfgN4XcU<br>a=ssrc:918630538 label:0iktbV3nM7dQBZdt40DBM4ePZfgN4XcUv0<br>a=ice-ufrag:hSaGxCKm9rBsOttY<br>a=ice-pwd:lQkem2ZJp6GKqgwxYw3mZEyZ<br>a=candidate:5976490621 1 udp 659136 167.114.64.133 31094 typ host generation 0<br><br>jssip.js:21418 JsSIP:Transport sending WebSocket message:<br><br>SIP/2.0 100 Trying<br>Via: SIP/2.0/WSS 167.114.64.133:7443;branch=z9hG4bK8FZSBmg68N2vQ<br>To: &lt;<a>sip:1000@conference2.cibersys.com</a>&gt;;tag=5hp7n36gjm<br>From: &lt;<a>sip:9196@conference2.cibersys.com</a>&gt;;tag=6g97NQgHK9NFD<br>Call-ID: jnicb84inognuej1f5hh<br>CSeq: 76672396 INVITE<br>Supported: ice,outbound<br>Content-Length: 0<br><br><br> +4ms<br>jssip.js:21418 JsSIP:RTCSession receiveRequest() +1ms<br>jssip.js:21418 JsSIP:RTCSession receiveReinvite() +0ms<br>jssip.js:21418 rtcninja:RTCPeerConnection setRemoteDescription() +5ms<br>jssip.js:21418 rtcninja:RTCPeerConnection onsignalingstatechange() | signalingState: have-remote-offer +2ms<br>jssip.js:21418 rtcninja:RTCPeerConnection setRemoteDescription() | success +13ms<br>jssip.js:21418 JsSIP:RTCSession createLocalDescription() +0ms<br>jssip.js:21418 rtcninja:RTCPeerConnection createAnswer() +1ms<br>jssip.js:21418 rtcninja:RTCPeerConnection createAnswer() | success +1ms<br>jssip.js:21418 rtcninja:RTCPeerConnection setLocalDescription() +1ms<br>jssip.js:21593 rtcninja:ERROR:RTCPeerConnection setLocalDescription() | error: +1ms Failed to set local answer sdp: Failed to push down transport description: Offerer must use actpass value for setup attribute.<br>jssip.js:21418 JsSIP:Transport sending WebSocket message:<br><br>SIP/2.0 500 JsSIP Internal Error<br>Via: SIP/2.0/WSS 167.114.64.133:7443;branch=z9hG4bK8FZSBmg68N2vQ<br>To: &lt;<a>sip:1000@conference2.cibersys.com</a>&gt;;tag=5hp7n36gjm<br>From: &lt;<a>sip:9196@conference2.cibersys.com</a>&gt;;tag=6g97NQgHK9NFD<br>Call-ID: jnicb84inognuej1f5hh<br>CSeq: 76672396 INVITE<br>Supported: ice,outbound<br>Content-Length: 0<br><br><br> +1ms<br>jssip.js:21418 JsSIP:Transport received WebSocket text message:<br><br>ACK sip:4iv564gg@l3nbdffa0opf.invalid;transport=ws;ob SIP/2.0<br>Via: SIP/2.0/WSS 167.114.64.133:7443;branch=z9hG4bK8FZSBmg68N2vQ<br>Max-Forwards: 70<br>From: &lt;<a>sip:9196@conference2.cibersys.com</a>&gt;;tag=6g97NQgHK9NFD<br>To: &lt;<a>sip:1000@conference2.cibersys.com</a>&gt;;tag=5hp7n36gjm<br>Call-ID: jnicb84inognuej1f5hh<br>CSeq: 76672396 ACK<br>Content-Length: 0<br><br><br> +405ms<br>jssip.js:21418 JsSIP:Transport received WebSocket text message:<br><br>BYE sip:4iv564gg@l3nbdffa0opf.invalid;transport=ws;ob SIP/2.0<br>Via: SIP/2.0/WSS 167.114.64.133:7443;branch=z9hG4bK9rrjDF195yrFK<br>Max-Forwards: 70<br>From: &lt;<a>sip:9196@conference2.cibersys.com</a>&gt;;tag=6g97NQgHK9NFD<br>To: &lt;<a>sip:1000@conference2.cibersys.com</a>&gt;;tag=5hp7n36gjm<br>Call-ID: jnicb84inognuej1f5hh<br>CSeq: 76672397 BYE<br>Contact: &lt;sip:9196@167.114.64.133:5060;transport=udp&gt;<br>User-Agent: FreeSWITCH-mod_sofia/1.7.0+git~20150609T042756Z~18063a4754~64bit<br>Allow: INVITE, ACK, BYE, CANCEL, OPTIONS, MESSAGE, INFO, UPDATE, REGISTER, REFER, NOTIFY, PUBLISH, SUBSCRIBE<br>Supported: timer, path, replaces<br>Content-Length: 0<br><br><br> +4ms<br>jssip.js:21418 JsSIP:RTCSession receiveRequest() +6ms<br>jssip.js:21418 JsSIP:Transport sending WebSocket message:<br><br>SIP/2.0 200 OK<br>Via: SIP/2.0/WSS 167.114.64.133:7443;branch=z9hG4bK9rrjDF195yrFK<br>To: &lt;<a>sip:1000@conference2.cibersys.com</a>&gt;;tag=5hp7n36gjm<br>From: &lt;<a>sip:9196@conference2.cibersys.com</a>&gt;;tag=6g97NQgHK9NFD<br>Call-ID: jnicb84inognuej1f5hh<br>CSeq: 76672397 BYE<br>Supported: outbound<br>Content-Length: 0<br><br><br> +1ms<br>jssip.js:21418 JsSIP:RTCSession session ended +0ms<br>jssip.js:21418 JsSIP:RTCSession close() +1ms<br>jssip.js:21418 rtcninja:RTCPeerConnection close() +1ms<br>jssip.js:21418 JsSIP:RTCSession close() | closing local MediaStream +5ms<br>jssip.js:21418 rtcninja:Adapter closeMediaStream() | calling stop() on all the MediaStreamTrack +1ms<br>jssip.js:21418 JsSIP:Dialog dialog jnicb84inognuej1f5hh5hp7n36gjm6g97NQgHK9NFD deleted +0ms<br>jssip.js:21418 rtcninja:Adapter closeMediaStream() | calling stop() on all the MediaStreamTrack +13ms<br>jssip.js:21418 JsSIP:NonInviteServerTransaction Timer J expired for transaction z9hG4bK9rrjDF195yrFK +1ms<br>jssip.js:21418 rtcninja:RTCPeerConnection oniceconnectionstatechange() | iceConnectionState: closed +1ms<br>jssip.js:21418 rtcninja:RTCPeerConnection onsignalingstatechange() | signalingState: closed +0ms<br>jssip.js:21418 JsSIP:InviteServerTransaction Timer H expired for transaction z9hG4bK8FZSBmg68N2vQ +32s<br></div><div class="gmail_default" style="font-family:courier new,monospace"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">2015-06-11 5:36 GMT-04:30 Michael Jerris <span dir="ltr">&lt;<a>mike@jerris.com</a>&gt;</span>:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word">can you confirm you are using latest master code?<div><br><div><blockquote type="cite"><div><div><div>On Jun 11, 2015, at 4:11 AM, Denis Jakovlev &lt;<a>yadenis@seznam.cz</a>&gt; wrote:</div><br></div></div><div><div><div>

<div>
<span style="font-family:&#39;Courier New&#39;;font-size:9pt">Hi All,<br>
<br>
No proxy I have here a log. I do not understand why it does not work<br>
<br>
<br>
</span>cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd v=0<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd o=FreeSWITCH 1433990004 1433990006 IN IP4 62.168.61.75<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd s=FreeSWITCH<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd c=IN IP4 62.168.61.75<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd t=0 0<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=msid-semantic: WMS 9uZmf8cKmvsfGw8dCbIv0i4zRR8nj8ti<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd m=audio 19680 RTP/SAVPF 111 126 106<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=rtpmap:111 opus/48000/2<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=fmtp:111 useinbandfec=1; minptime=10<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=rtpmap:126 telephone-event/8000<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=rtpmap:106 CN/8000<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=ptime:20<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=sendrecv<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=fingerprint:sha-256 85:0C:F2:1A:E0:24:BE:9C:B0:22:6F:57:95:EA:44:4E:97:14:D1:AA:F5:CC:F5:99:9C:D0:95:72:D7:A5:24:A5<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=setup:active<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=rtcp-mux<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=rtcp:19680 IN IP4 62.168.61.75<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=ice-ufrag:B1CrawQReO5oNpw5<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=ice-pwd:yRuHfs2XKtcpSvwkmYBmki4p<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=candidate:1471468333 1 udp 659136 62.168.61.75 19680 typ host generation 0<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=ssrc:763188563 cname:sjuyix8uSrApOzsg<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=ssrc:763188563 msid:9uZmf8cKmvsfGw8dCbIv0i4zRR8nj8ti a0<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=ssrc:763188563 mslabel:9uZmf8cKmvsfGw8dCbIv0i4zRR8nj8ti<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=ssrc:763188563 label:9uZmf8cKmvsfGw8dCbIv0i4zRR8nj8tia0<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd m=video 26744 RTP/SAVPF 100<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=rtpmap:100 VP8/90000<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=fingerprint:sha-256 85:0C:F2:1A:E0:24:BE:9C:B0:22:6F:57:95:EA:44:4E:97:14:D1:AA:F5:CC:F5:99:9C:D0:95:72:D7:A5:24:A5<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=setup:active<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=rtcp-mux<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=rtcp:26744 IN IP4 62.168.61.75<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd b=AS:1024<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=rtcp-fb:100 ccm fir<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=rtcp-fb:100 nack<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=rtcp-fb:100 nack pli<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=ssrc:46204585 cname:sjuyix8uSrApOzsg<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=ssrc:46204585 msid:9uZmf8cKmvsfGw8dCbIv0i4zRR8nj8ti v0<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=ssrc:46204585 mslabel:9uZmf8cKmvsfGw8dCbIv0i4zRR8nj8ti<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=ssrc:46204585 label:9uZmf8cKmvsfGw8dCbIv0i4zRR8nj8tiv0<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=ice-ufrag:1Izq5669ZYJtxd4D<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=ice-pwd:GuVXnqIVLGfyekd5SClNziMp<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd a=candidate:0062636174 1 udp 659136 62.168.61.75 26744 typ host generation 0<br>
cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd <br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:33.981091 [NOTICE] switch_ivr_originate.c:3522 Channel [sofia/internal/1004@62.168.61.75] has been answered</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:33.981091 [DEBUG] switch_channel.c:3759 (sofia/internal/1004@62.168.61.75) Callstate Change EARLY -&gt; ACTIVE</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:33.981091 [DEBUG] sofia.c:6701 Channel sofia/internal/1004@62.168.61.75 entering state [completed][200]</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:33.981091 [DEBUG] switch_ivr_originate.c:3580 Originate Resulted in Success: [sofia/internal/91q3mnj4@302talpeitp7.invalid]</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">9c89d57d-f3b9-46d2-995d-8541ffc591bb 2015-06-11 10:01:33.981091 [NOTICE] switch_core_session.c:1657 Session 2 (sofia/internal/91q3mnj4@302talpeitp7.invalid) Ended</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">9c89d57d-f3b9-46d2-995d-8541ffc591bb 2015-06-11 10:01:33.981091 [NOTICE] switch_core_session.c:1661 Close Channel sofia/internal/91q3mnj4@302talpeitp7.invalid [CS_DESTROY]</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">9c89d57d-f3b9-46d2-995d-8541ffc591bb 2015-06-11 10:01:33.981091 [DEBUG] switch_core_state_machine.c:630 (sofia/internal/91q3mnj4@302talpeitp7.invalid) Running State Change CS_DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">9c89d57d-f3b9-46d2-995d-8541ffc591bb 2015-06-11 10:01:33.981091 [DEBUG] switch_core_state_machine.c:640 (sofia/internal/91q3mnj4@302talpeitp7.invalid) State DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">9c89d57d-f3b9-46d2-995d-8541ffc591bb 2015-06-11 10:01:33.981091 [DEBUG] mod_sofia.c:341 sofia/internal/91q3mnj4@302talpeitp7.invalid SOFIA DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">9c89d57d-f3b9-46d2-995d-8541ffc591bb 2015-06-11 10:01:33.981091 [DEBUG] switch_core_state_machine.c:111 sofia/internal/91q3mnj4@302talpeitp7.invalid Standard DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">9c89d57d-f3b9-46d2-995d-8541ffc591bb 2015-06-11 10:01:33.981091 [DEBUG] switch_core_state_machine.c:640 (sofia/internal/91q3mnj4@302talpeitp7.invalid) State DESTROY going to sleep</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:33.991091 [DEBUG] switch_ivr_originate.c:3580 Originate Resulted in Success: [sofia/internal/91q3mnj4@302talpeitp7.invalid]</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:33.991091 [DEBUG] switch_core_media.c:8778 sofia/internal/91q3mnj4@302talpeitp7.invalid PAUSE Jitterbuffer</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:33.991091 [DEBUG] switch_core_media.c:8778 sofia/internal/1004@62.168.61.75 PAUSE Jitterbuffer</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:33.991091 [DEBUG] switch_ivr_bridge.c:1457 (sofia/internal/91q3mnj4@302talpeitp7.invalid) State Change CS_CONSUME_MEDIA -&gt; CS_EXCHANGE_MEDIA</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:33.991091 [DEBUG] switch_core_state_machine.c:473 (sofia/internal/91q3mnj4@302talpeitp7.invalid) Running State Change CS_EXCHANGE_MEDIA</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:33.991091 [DEBUG] switch_core_state_machine.c:542 (sofia/internal/91q3mnj4@302talpeitp7.invalid) State EXCHANGE_MEDIA</a><br>
6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:33.991091 [DEBUG] mod_sofia.c:612 SOFIA EXCHANGE_MEDIA<br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.041090 [DEBUG] sofia.c:6701 Channel sofia/internal/1004@62.168.61.75 entering state [ready][200]</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.041090 [NOTICE] sofia.c:952 Hangup sofia/internal/1004@62.168.61.75 [CS_EXECUTE] [NORMAL_CLEARING]</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">2015-06-11 10:01:34.041090 [DEBUG] switch_core_media.c:4983 sofia/internal/1004@62.168.61.75 Video thread ended</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.041090 [DEBUG] switch_ivr_bridge.c:649 BRIDGE THREAD DONE [sofia/internal/1004@62.168.61.75]</a><br>
6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.061089 [DEBUG] switch_ivr_bridge.c:590 Ending video thread.<br>
6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.061089 [DEBUG] switch_ivr_bridge.c:638 Ending video thread.<br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_ivr_bridge.c:98 sofia/internal/91q3mnj4@302talpeitp7.invalid video thread ended.</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_ivr_bridge.c:649 BRIDGE THREAD DONE [sofia/internal/91q3mnj4@302talpeitp7.invalid]</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [NOTICE] switch_ivr_bridge.c:746 Hangup sofia/internal/91q3mnj4@302talpeitp7.invalid [CS_EXCHANGE_MEDIA] [NORMAL_CLEARING]</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:542 (sofia/internal/91q3mnj4@302talpeitp7.invalid) State EXCHANGE_MEDIA going to sleep</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:473 (sofia/internal/91q3mnj4@302talpeitp7.invalid) Running State Change CS_HANGUP</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:739 (sofia/internal/91q3mnj4@302talpeitp7.invalid) Callstate Change ACTIVE -&gt; HANGUP</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">2015-06-11 10:01:34.071090 [DEBUG] switch_core_media.c:4983 sofia/internal/91q3mnj4@302talpeitp7.invalid Video thread ended</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:741 (sofia/internal/91q3mnj4@302talpeitp7.invalid) State HANGUP</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_ivr_bridge.c:1555 sofia/internal/91q3mnj4@302talpeitp7.invalid skip receive message [UNBRIDGE] (channel is hungup already)</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] mod_sofia.c:425 sofia/internal/91q3mnj4@302talpeitp7.invalid Overriding SIP cause 480 with 200 from the other leg</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_ivr_bridge.c:1558 sofia/internal/1004@62.168.61.75 skip receive message [UNBRIDGE] (channel is hungup already)</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] mod_sofia.c:431 Channel sofia/internal/91q3mnj4@302talpeitp7.invalid hanging up, cause: NORMAL_CLEARING</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] mod_sofia.c:483 Sending BYE to sofia/internal/91q3mnj4@302talpeitp7.invalid</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:60 sofia/internal/91q3mnj4@302talpeitp7.invalid Standard HANGUP, cause: NORMAL_CLEARING</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:741 (sofia/internal/91q3mnj4@302talpeitp7.invalid) State HANGUP going to sleep</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_session.c:2924 sofia/internal/1004@62.168.61.75 skip receive message [APPLICATION_EXEC_COMPLETE] (channel is hungup already)</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:539 (sofia/internal/1004@62.168.61.75) State EXECUTE going to sleep</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:473 (sofia/internal/1004@62.168.61.75) Running State Change CS_HANGUP</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:508 (sofia/internal/91q3mnj4@302talpeitp7.invalid) State Change CS_HANGUP -&gt; CS_REPORTING</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:739 (sofia/internal/1004@62.168.61.75) Callstate Change ACTIVE -&gt; HANGUP</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:473 (sofia/internal/91q3mnj4@302talpeitp7.invalid) Running State Change CS_REPORTING</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:741 (sofia/internal/1004@62.168.61.75) State HANGUP</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] mod_sofia.c:425 sofia/internal/1004@62.168.61.75 Overriding SIP cause 480 with 503 from the other leg</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] mod_sofia.c:431 Channel sofia/internal/1004@62.168.61.75 hanging up, cause: NORMAL_CLEARING</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:827 (sofia/internal/91q3mnj4@302talpeitp7.invalid) State REPORTING</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:104 sofia/internal/91q3mnj4@302talpeitp7.invalid Standard REPORTING, cause: NORMAL_CLEARING</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:827 (sofia/internal/91q3mnj4@302talpeitp7.invalid) State REPORTING going to sleep</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:499 (sofia/internal/91q3mnj4@302talpeitp7.invalid) State Change CS_REPORTING -&gt; CS_DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_session.c:1639 Session 3 (sofia/internal/91q3mnj4@302talpeitp7.invalid) Locked, Waiting on external entities</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [NOTICE] switch_core_session.c:1657 Session 3 (sofia/internal/91q3mnj4@302talpeitp7.invalid) Ended</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [NOTICE] switch_core_session.c:1661 Close Channel sofia/internal/91q3mnj4@302talpeitp7.invalid [CS_DESTROY]</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:60 sofia/internal/1004@62.168.61.75 Standard HANGUP, cause: NORMAL_CLEARING</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:741 (sofia/internal/1004@62.168.61.75) State HANGUP going to sleep</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:508 (sofia/internal/1004@62.168.61.75) State Change CS_HANGUP -&gt; CS_REPORTING</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:630 (sofia/internal/91q3mnj4@302talpeitp7.invalid) Running State Change CS_DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:473 (sofia/internal/1004@62.168.61.75) Running State Change CS_REPORTING</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:827 (sofia/internal/1004@62.168.61.75) State REPORTING</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:104 sofia/internal/1004@62.168.61.75 Standard REPORTING, cause: NORMAL_CLEARING</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:827 (sofia/internal/1004@62.168.61.75) State REPORTING going to sleep</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:640 (sofia/internal/91q3mnj4@302talpeitp7.invalid) State DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] mod_sofia.c:341 sofia/internal/91q3mnj4@302talpeitp7.invalid SOFIA DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:111 sofia/internal/91q3mnj4@302talpeitp7.invalid Standard DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">6a491493-bcc1-4aa7-b78b-913509bdb7b8 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:640 (sofia/internal/91q3mnj4@302talpeitp7.invalid) State DESTROY going to sleep</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:499 (sofia/internal/1004@62.168.61.75) State Change CS_REPORTING -&gt; CS_DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_session.c:1639 Session 1 (sofia/internal/1004@62.168.61.75) Locked, Waiting on external entities</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [NOTICE] switch_core_session.c:1657 Session 1 (sofia/internal/1004@62.168.61.75) Ended</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [NOTICE] switch_core_session.c:1661 Close Channel sofia/internal/1004@62.168.61.75 [CS_DESTROY]</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:630 (sofia/internal/1004@62.168.61.75) Running State Change CS_DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:640 (sofia/internal/1004@62.168.61.75) State DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] mod_sofia.c:341 sofia/internal/1004@62.168.61.75 SOFIA DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:111 sofia/internal/1004@62.168.61.75 Standard DESTROY</a><br>
<a style="font-family:&#39;Courier New&#39;;font-size:9pt">cd8468d0-2f0f-4df2-a0df-d621bbc6ddcd 2015-06-11 10:01:34.071090 [DEBUG] switch_core_state_machine.c:640 (sofia/internal/1004@62.168.61.75) State DESTROY going to sleep</a><br>
<br>
<br>
<br>
<span style="font-family:&#39;calibri&#39;;font-size:9pt;color:#c0c0c0"><i>-- <br>
S pozdravem,<br>
Ing.Denis Jakovlev                           <br>
<a href="http://mob.tel" target="_blank">mob.tel</a>. 775-415-382<br>
<br>
středa 10. června 2015, 20:46:51, napsal jste:<br>
<br>
</i></span><table>
<tbody><tr>
<td bgcolor="#0000ff" width="2"><br>
</td>
<td><span style="font-family:&#39;courier new&#39;;font-size:9pt">If you dont need proxy, dont use it.. if you have another issue, why not look at that, as it may be related.<br>
<br>
On Jun 10, 2015, at 2:39 PM, Denis Jakovlev &lt;</span><a style="font-family:&#39;courier new&#39;;font-size:9pt">yadenis@seznam.cz</a><span style="font-family:&#39;courier new&#39;;font-size:9pt">&gt; wrote:<br>
<br>
Dobrý den.<br>
<br>
No. But without a proxy that does not work either.<br>
<br>
<span style="font-family:&#39;arial&#39;;font-size:8pt;color:#c0c0c0"><i>-- <br>
S pozdravem,<br>
Ing.Denis Jakovlev                           <br>
<span style="font-size:9pt"><a href="http://mob.tel" target="_blank">mob.tel</a>. 775-415-382<br>
<br>
</span></i><span style="font-family:&#39;courier new&#39;;font-size:9pt">On 10. 6. 2015, at 20:17, Michael Jerris &lt;</span></span></span><a style="font-family:&#39;courier new&#39;;font-size:9pt">mike@jerris.com</a><span style="font-family:&#39;courier new&#39;;font-size:9pt">&gt; wrote:<br>
</span></td>
</tr>
</tbody></table>
<span style="font-family:&#39;courier new&#39;;font-size:9pt">Is there any reason you actually need proxy?  <br>
<br>
On Jun 10, 2015, at 1:47 PM, Denis Jakovlev &lt;</span><a style="font-family:&#39;courier new&#39;;font-size:9pt">yadenis@seznam.cz</a><span style="font-family:&#39;courier new&#39;;font-size:9pt">&gt; wrote:<br>
<br>
Dobrý den.<br>
<br>
This is the latest version 1.7. On Debian<br>
<br>
<span style="font-family:&#39;arial&#39;;font-size:8pt;color:#c0c0c0"><i>-- <br>
S pozdravem,<br>
Ing.Denis Jakovlev                           <br>
<span style="font-size:9pt"><a href="http://mob.tel" target="_blank">mob.tel</a>. 775-415-382<br>
<br>
</span></i><span style="font-family:&#39;courier new&#39;;font-size:9pt">On 10. 6. 2015, at 18:04, Michael Jerris &lt;</span></span></span><a style="font-family:&#39;courier new&#39;;font-size:9pt">mike@jerris.com</a><span style="font-family:&#39;courier new&#39;;font-size:9pt">&gt; wrote:<br>
<br>
This sounds like an old bug we already fixed.<br>
<br>
On Wednesday, June 10, 2015, Denis Jakovlev &lt;</span><a style="font-family:&#39;courier new&#39;;font-size:9pt">yadenis@seznam.cz</a><span style="font-family:&#39;courier new&#39;;font-size:9pt">&gt; wrote:<br>
Hi all,<br>
<br>
I have a strange problem. I use jssyp for communication. Conference work. 9193 also work and video writes perfectly.<br>
<br>
But when I try to call from 1004 to 1006 for example, I have an error<br>
<br>
2015-06-10 16:13:06.524244 [WARNING] switch_core_codec.c:717 Codec PROXY Exists but not at the desired implementation. 0hz 0ms 1ch<br>
2015-06-10 16:13:06.524244 [ERR] switch_core_media.c:2788 Can&#39;t load codec?<br>
<br>
<br>
inbound-proxy-media true<br>
inbound-late-negotiation true<br>
<br>
what am I doing wrong?<br>
</span></div></div></div><span>_________________________________________________________________________<br>Professional FreeSWITCH Consulting Services: <br><a>consulting@freeswitch.org</a><br><a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br><br>Official FreeSWITCH Sites<br><a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br><a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br><a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br><br>FreeSWITCH-users mailing list<br><a>FreeSWITCH-users@lists.freeswitch.org</a><br><a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br><a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a></span></div></blockquote></div><br></div></div><br>_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a>consulting@freeswitch.org</a><br>
<a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
<a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
<br>
FreeSWITCH-users mailing list<br>
<a>FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br></blockquote></div><br><br clear="all"><br>-- <br><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><font size="2"><span style="font-family:courier new,monospace"><br><img src="https://www.cibersys.com/imagenes/logotipo-cibersys-the-new-easy.png"><br><br>Víctor E. Medina M.<br></span></font><div><font size="2"><span style="font-family:courier new,monospace">Platform Architect / Chief Infrastructure<br></span></font></div><font size="2"><span style="font-family:courier new,monospace"><span style="display:inline"><span style="display:inline"><a>+58424 291 4561</a></span></span><br>BB #79A8AFA2<br>@VMCibersys<br></span></font></div><div dir="ltr"><font size="2"><span style="font-family:courier new,monospace"><br></span></font></div></div></div></div></div></div></div></div>
</div>
</blockquote>
</div></div><br>_________________________________________________________________________<br>
Professional FreeSWITCH Consulting Services:<br>
<a href="javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;consulting@freeswitch.org&#39;);" target="_blank">consulting@freeswitch.org</a><br>
<a href="http://www.freeswitchsolutions.com" target="_blank">http://www.freeswitchsolutions.com</a><br>
<br>
Official FreeSWITCH Sites<br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br>
<a href="http://confluence.freeswitch.org" target="_blank">http://confluence.freeswitch.org</a><br>
<a href="http://www.cluecon.com" target="_blank">http://www.cluecon.com</a><br>
<br>
FreeSWITCH-users mailing list<br>
<a href="javascript:_e(%7B%7D,&#39;cvml&#39;,&#39;FreeSWITCH-users@lists.freeswitch.org&#39;);" target="_blank">FreeSWITCH-users@lists.freeswitch.org</a><br>
<a href="http://lists.freeswitch.org/mailman/listinfo/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/listinfo/freeswitch-users</a><br>
UNSUBSCRIBE:<a href="http://lists.freeswitch.org/mailman/options/freeswitch-users" target="_blank">http://lists.freeswitch.org/mailman/options/freeswitch-users</a><br>
<a href="http://www.freeswitch.org" target="_blank">http://www.freeswitch.org</a><br></blockquote></div><br><br clear="all"><br>-- <br><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><font size="2"><span style="font-family:courier new,monospace"><br><img src="https://www.cibersys.com/imagenes/logotipo-cibersys-the-new-easy.png"><br><br>Víctor E. Medina M.<br></span></font><div><font size="2"><span style="font-family:courier new,monospace">Platform Architect / Chief Infrastructure<br></span></font></div><font size="2"><span style="font-family:courier new,monospace"><span style="display:inline"><span style="display:inline"><a>+58424 291 4561</a></span></span><br>BB #79A8AFA2<br>@VMCibersys<br></span></font></div><div dir="ltr"><font size="2"><span style="font-family:courier new,monospace"><br></span></font></div></div></div></div></div></div></div></div>
</div>
</div></div></blockquote></div><br><br clear="all"><br>-- <br><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><font size="2"><span style="font-family:courier new,monospace"><br><img src="https://www.cibersys.com/imagenes/logotipo-cibersys-the-new-easy.png"><br><br>Víctor E. Medina M.<br></span></font><div><font size="2"><span style="font-family:courier new,monospace">Platform Architect / Chief Infrastructure<br></span></font></div><font size="2"><span style="font-family:courier new,monospace"><span style="display:inline"><span style="display:inline"><a>+58424 291 4561</a></span></span><br>BB #79A8AFA2<br>@VMCibersys<br></span></font></div><div dir="ltr"><font size="2"><span style="font-family:courier new,monospace"><br></span></font></div></div></div></div></div></div></div></div>
</div>
</div></div></blockquote></div><br><br clear="all"><br>-- <br><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><div><div dir="ltr"><font size="2"><span style="font-family:courier new,monospace"><br><img src="https://www.cibersys.com/imagenes/logotipo-cibersys-the-new-easy.png"><br><br>Víctor E. Medina M.<br></span></font><div><font size="2"><span style="font-family:courier new,monospace">Platform Architect / Chief Infrastructure<br></span></font></div><font size="2"><span style="font-family:courier new,monospace"><span style="display:inline"><span style="display:inline"><a>+58424 291 4561</a></span></span><br>BB #79A8AFA2<br>@VMCibersys<br></span></font></div><div dir="ltr"><font size="2"><span style="font-family:courier new,monospace"><br></span></font></div></div></div></div></div></div></div></div>
</div>
</blockquote>