[SR-Users] kamailio with mediaproxy-ng, 488 Not Acceptable Here

Mihai Marin marinmihai at gmail.com
Mon Feb 3 12:00:37 CET 2014


Hello,

Another weekend struggling to make a call from jssip to another jssip
behind firewall and I still receive 488 - Not Acceptable Here. I tried all
the ideas that I had/received without any success - including catch 488 and
re-invite.

request_route {

# per request initial checks
route(REQINIT);

# websockets
route(WSDETECT);
 # NAT detection
route(NATDETECT);

        .........
}

route[WITHINDLG] {
if (has_totag()) {
# sequential request withing a dialog should
# take the path determined by record-routing
if (loose_route()) {
route(DLGURI);
if (is_method("BYE")) {
setflag(FLT_ACC); # do accounting ...
setflag(FLT_ACCFAILED); # ... even if the transaction fails
}
else if ( is_method("ACK") ) {
route(NATMANAGE);
    .................

}

branch_route[MANAGE_BRANCH] {
xdbg("new branch [$T_branch_idx] to $ru\n");
route(NATMANAGE);
}

# Caller NAT detection route
route[NATDETECT] {
#!ifdef WITH_NAT
force_rport();
if (nat_uac_test("19")) {
if (is_method("REGISTER")) {
fix_nated_register();
} else {
add_contact_alias();
}
setflag(FLT_NATS);
}
#!endif
return;
}

# RTPProxy control
route[NATMANAGE] {
#!ifdef WITH_NAT
if (is_request()) {
if(has_totag()) {
if(check_route_param("nat=yes")) {
setbflag(FLB_NATB);
}
}
}
if (!(isflagset(FLT_NATS) || isbflagset(FLB_NATB)))
return;

#tried this
        rtpproxy_manage("+","93.187.138.214");
#tried this too
        #if (is_request()) {
# if (is_direction("downstream"))
# rtpproxy_manage("1FOII");
# else
# rtpproxy_manage("1FOIIR");
#} else {
# if (is_direction("downstream"))
# rtpproxy_manage("2FOIIR");
# else
# rtpproxy_manage("2FOII");
#}

if (is_request()) {
if (!has_totag()) {
add_rr_param(";nat=yes");
}
}
if (is_reply()) {
if(isbflagset(FLB_NATB)) {
add_contact_alias();
}
}
#!endif
return;
}

failure_route[MANAGE_FAILURE] {
t_on_failure("UA_FAILURE");
...
}

failure_route[UA_FAILURE] {
if (t_check_status("488") && sdp_content()) {
if (sdp_get_line_startswith("$avp(mline)", "m=")) {
if ($avp(mline) =~ "SAVPF") {
$avp(rtpproxy_offer_flags) = "frocsp";
$avp(rtpproxy_answer_flags) = "froc+SP";
} else {
$avp(rtpproxy_offer_flags) = "froc+SP";
$avp(rtpproxy_answer_flags) = "frocsp";
}
# In a production system you probably need to catch
# "RTP/SAVP" and "RTP/AVPF" and handle them correctly
# too
}
append_branch();
rtpproxy_offer($avp(rtpproxy_offer_flags));
t_on_reply("RTPPROXY_REPLY");
route(RELAY);
}
}

What do I miss from my configuration?

Thank you.

Best regards,
Mihai M


On Wed, Jan 29, 2014 at 2:57 PM, Klaus Darilion <
klaus.mailinglists at pernau.at> wrote:

> Peter had a talk at Astricon 2013 presenting how it works. I think the
> magic lies on the parameters. See this slide (there are some more
> interesting slides)
> https://www.youtube.com/watch?list=PLighc-2vlRgQHZMBp-
> 8CCFi5otCnw7Lwj&v=rXsVSaRuv20&feature=player_detailpage#t=659
>
>
> regards
> Klaus
>
>
>
> On 29.01.2014 12:53, Mihai Marin wrote:
>
>> Hello,
>> Thank you for your answer.
>>
>> My server is a centos with public ip. I'm using chrome with jssip
>> framework for sip client - tried sipml5 also. I have attached to this
>> e-mail my kamailio configuration.
>>
>> Regarding the kamailio + mediaproxy-ng I took the latest versions from
>> git - also tried with kamailio 4.1.1. The mediaproxy-ng I'm running
>> using the command: /tmp/mediaproxy-ng/daemon/mediaproxy-ng
>> --ip=PUBLIC_IP --listen-ng=127.0.0.1:2222 <http://127.0.0.1:2222>
>>
>>
>>
>>
>> I also tried the following configuration and I have the same error:
>> route {
>>          ......................
>>
>> ############################################################
>> ######################################################
>> # Use RTP-Proxy
>> ############################################################
>> ###################################################
>> #if (!rtpproxy_offer("arf")) {
>> #sl_send_reply("503", "No RTP-Relay available");
>>
>> #exit;
>> #}
>> if (is_method("INVITE")) {
>> if (sdp_content()) {
>> if (rtpproxy_offer())
>> rtpproxy_manage("cowf","PUBLIC_IP");
>> t_on_reply("1");
>> }
>> } else {
>>                if (sdp_content()) {
>> if (rtpproxy_offer())
>> rtpproxy_manage("cowf","PUBLIC_IP");
>> }
>> }
>> if (is_method("ACK") && sdp_content()) {
>>           rtpproxy_answer();
>> rtpproxy_manage("cowf","PUBLIC_IP");
>> }
>>
>>
>> #t_on_reply("1");
>>
>> # Relay this statefully
>> t_relay();
>>          ...............................................................
>> *******************************************************************
>> onreply_route[1] {
>> if ((($Rp == MY_WS_PORT || $Rp == MY_WSS_PORT)
>> && !(proto == WS || proto == WSS)) || $Rp == MY_MSRP_PORT) {
>> xlog("L_WARN", "SIP response received on $Rp\n");
>> drop;
>> exit;
>> }
>> if (nat_uac_test(64)) {
>> # Do NAT traversal stuff for replies to a WebSocket connection
>> # - even if it is not behind a NAT!
>> # This won't be needed in the future if Kamailio and the
>> # WebSocket client support Outbound and Path.
>> add_contact_alias();
>> }
>> # A Transaction from a NATed Client to a NATed Client? Use the RTP-Proxy!
>> if (status=~"(180)|(183)|(2[0-9][0-9])") {
>> fix_nated_contact();
>> if (sdp_content()) {
>> rtpproxy_answer();
>>                  }
>>          }
>> }
>>
>> If my problem could be caused by a kamalio miss-configuration could you
>> please send me an example of configuration that should work with
>> websockets, rtpproxy-ng->mediaproxy-ng in order to remove one possible
>> cause?
>>
>> Thank you.
>>
>> Best regards,
>> Mihai M
>>
>> On Wed, Jan 29, 2014 at 1:31 PM, Klaus Darilion
>> <klaus.mailinglists at pernau.at <mailto:klaus.mailinglists at pernau.at>>
>> wrote:
>>
>>     Hi!
>>
>>     The problem is different SDP formats between normal SIP
>>     clients/gateways, and WebRTC clients.
>>
>>     You have to instruct mediaproxy-ng to rewrite the SDP and do the
>>     conversion (encryption, ...).
>>
>>     So either the rtpproxy_ng calls lack the commands for the
>>     "gatewaying", or the webrtc clients uses eg. an encryption which is
>>     not supported by mediaproxy-ng.
>>
>>     Please also post the kamailio.cfg snippets when calling rtpproxy_ng
>>     and give details about your environment (browser, SIP client ...)
>>
>>     regards
>>     Klaus
>>
>>
>>     On 27.01.2014 22:38, Mihai Marin wrote:
>>
>>         Hello Sirs,
>>         I have a problem configuring kamailio with mediaproxy-ng and I'm
>>         asking
>>         for help.
>>
>>         I managed to build everything, kamailio find support for
>>         mediaproxy-ng
>>         using rtpproxy-ng. When I'm trying to make a call from Web using
>> my
>>         phone's internet provider to my computer's web I get 488 Not
>>         Acceptable
>>         Here. Swithing the caller I get no video.
>>
>>         I have used the kamailio-advanced.cfg generated and added
>> websocket
>>         support. The call in my network is working perfect.
>>
>>         Can you help me with this?
>>
>>         mediaproxy-ng log:
>>         mediaproxy-ng[14896]: Returning to SIP proxy:
>>         d7:createdi1390864117e7:__streamslld3:tag10:trhh9viigs6:
>> __status34:known
>>         but
>>         unconfirmed peer
>>         address5:statsd3:rtpd8:__countersd7:packetsi0e5:__
>> bytesi0e6:errorsi0ee12:peer
>>         addressd6:family4:IPv47:__address13:213.233.85.554:__
>> porti48279ee23:advertised
>>         peer
>>         addressd6:family4:IPv47:__address13:213.233.85.554:__
>> porti48279ee10:local
>>         porti30008ee4:rtcpd8:__countersd7:packetsi0e5:__
>> bytesi0e6:errorsi0ee12:peer
>>         addressd6:family4:IPv47:__address13:213.233.85.554:__
>> porti48280ee23:advertised
>>         peer
>>         addressd6:family4:IPv47:__address13:213.233.85.554:__
>> porti48280ee10:local
>>         porti30009eeeed3:tag0:6:__status20:unknown peer
>>         address5:statsd3:rtpd8:__countersd7:packetsi0e5:__
>> bytesi0e6:errorsi0ee12:peer
>>         addressd6:family4:IPv67:__address2:::4:porti0ee23:__advertised
>>         peer addressd6:family4:IPv67:__address2:::4:porti0ee10:local
>>         porti30010ee4:rtcpd8:__countersd7:packetsi0e5:__
>> bytesi0e6:errorsi0ee12:peer
>>         addressd6:family4:IPv67:__address2:::4:porti0ee23:__advertised
>> peer
>>         addressd6:family4:IPv67:__address2:::4:porti0ee10:local
>>         porti30011eeeeee6:totalsd5:__inputd3:rtpd7:packetsi0e5:__
>> bytesi0e6:errorsi0ee4:rtcpd7:__packetsi0e5:bytesi0e6:__
>> errorsi0eee6:outputd3:rtpd7:__packetsi0e5:bytesi0e6:__
>> errorsi0ee4:rtcpd7:__packetsi0e5:bytesi0e6:__errorsi0eeee6:result2:oke
>>
>>
>>
>>         kamailio:
>>
>>         11(14926) ERROR: *** cfgtrace:
>>         c=[/usr/local/etc/kamailio/__kamailio-advanced.cfg] l=860 a=24
>>
>>         n=rtpproxy_manage
>>         11(14926) DEBUG: rtpproxy-ng [rtpproxy.c:1333]:
>>         rtpp_function_call():
>>         proxy reply:
>>         d7:createdi1390864117e7:__streamslld3:tag10:trhh9viigs6:
>> __status34:known
>>         but
>>         unconfirmed peer
>>         address5:statsd3:rtpd8:__countersd7:packetsi0e5:__
>> bytesi0e6:errorsi0ee12:peer
>>         addressd6:family4:IPv47:__address13:213.233.85.554:__
>> porti48279ee23:advertised
>>         peer
>>         addressd6:family4:IPv47:__address13:213.233.85.554:__
>> porti48279ee10:local
>>         porti30008ee4:rtcpd8:__countersd7:packetsi0e5:__
>> bytesi0e6:errorsi0ee12:peer
>>         addressd6:family4:IPv47:__address13:213.233.85.554:__
>> porti48280ee23:advertised
>>         peer
>>         addressd6:family4:IPv47:__address13:213.233.85.554:__
>> porti48280ee10:local
>>         porti30009eeeed3:tag0:6:__status20:unknown peer
>>         address5:statsd3:rtpd8:__countersd7:packetsi0e5:__
>> bytesi0e6:errorsi0ee12:peer
>>         addressd6:family4:IPv67:__address2:::4:porti0ee23:__advertised
>>         peer addressd6:family4:IPv67:__address2:::4:porti0ee10:local
>>         porti30010ee4:rtcpd8:__countersd7:packetsi0e5:__
>> bytesi0e6:errorsi0ee12:peer
>>         addressd6:family4:IPv67:__address2:::4:porti0ee23:__advertised
>> peer
>>         addressd6:family4:IPv67:__address2:::4:porti0ee10:local
>>         porti30011eeeeee6:totalsd5:__inputd3:rtpd7:packetsi0e5:__
>> bytesi0e6:errorsi0ee4:rtcpd7:__packetsi0e5:bytesi0e6:__
>> errorsi0eee6:outputd3:rtpd7:__packetsi0e5:bytesi0e6:__
>> errorsi0ee4:rtcpd7:__packetsi0e5:bytesi0e6:__errorsi0eeee6:result2:oke
>>         11(14926) ERROR: *** cfgtrace:
>>         c=[/usr/local/etc/kamailio/__kamailio-advanced.cfg] l=867 a=16
>> n=if
>>         11(14926) ERROR: *** cfgtrace:
>>         c=[/usr/local/etc/kamailio/__kamailio-advanced.cfg] l=862 a=24
>>
>>         n=is_request
>>         11(14926) ERROR: *** cfgtrace:
>>         c=[/usr/local/etc/kamailio/__kamailio-advanced.cfg] l=866 a=16
>> n=if
>>         11(14926) ERROR: *** cfgtrace:
>>         c=[/usr/local/etc/kamailio/__kamailio-advanced.cfg] l=863 a=24
>>
>>         n=has_totag
>>         11(14926) DEBUG: siputils [checks.c:103]: has_totag(): no totag
>>         11(14926) ERROR: *** cfgtrace:
>>         c=[/usr/local/etc/kamailio/__kamailio-advanced.cfg] l=864 a=25
>>
>>         n=add_rr_param
>>         11(14926) ERROR: *** cfgtrace:
>>         c=[/usr/local/etc/kamailio/__kamailio-advanced.cfg] l=873 a=16
>> n=if
>>         11(14926) ERROR: *** cfgtrace:
>>         c=[/usr/local/etc/kamailio/__kamailio-advanced.cfg] l=867 a=24
>>
>>         n=is_reply
>>         11(14926) ERROR: *** cfgtrace:
>>         c=[/usr/local/etc/kamailio/__kamailio-advanced.cfg] l=873 a=2
>>
>>         n=return
>>         11(14926) ERROR: *** cfgtrace:
>>         c=[/usr/local/etc/kamailio/__kamailio-advanced.cfg] l=1009 a=16
>> n=if
>>         11(14926) ERROR: *** cfgtrace:
>>         c=[/usr/local/etc/kamailio/__kamailio-advanced.cfg] l=989 a=24
>>
>>         n=t_is_canceled
>>         11(14926) DEBUG: tm [t_lookup.c:1071]: t_check_msg(): DEBUG:
>>         t_check_msg: msg id=2 global id=2 T start=0x7f62174df4e0
>>         11(14926) DEBUG: tm [t_lookup.c:1143]: t_check_msg(): DEBUG:
>>         t_check_msg: T already found!
>>         11(14926) DEBUG: tm [t_reply.c:1827]: relay_reply(): DEBUG:
>>         relay_reply:
>>         branch=0, save=0, relay=0 icode=0
>>         11(14926) DEBUG: <core> [msg_translator.c:2007]:
>>         generate_res_buf_from_sip_res(__):  old size: 397, new size: 305
>>
>>         11(14926) DEBUG: <core> [msg_translator.c:2025]:
>>         generate_res_buf_from_sip_res(__): copied size: orig:125, new:
>>
>>         33, rest:
>>         272 msg=
>>         SIP/2.0 488 Not Acceptable Here
>>         Via: SIP/2.0/WS
>>         ebhg3v0qb6fm.invalid;rport=__1034;received=213.233.85.55
>>         <tel:213.233.85.55>;branch=__z9hG4bK8048296
>>
>>         To: <sip:bob at 93.187.138.214 <mailto:sip%3Abob at 93.187.138.214>
>>         <mailto:sip%3Abob at 93.187.138.__214
>>         <mailto:sip%253Abob at 93.187.138.214>>>;tag=r6dc2287g9
>>
>>
>>         From: "Alice Test" <sip:alice at 93.187.138.214
>>         <mailto:sip%3Aalice at 93.187.138.214>
>>         <mailto:sip%3Aalice at 93.187.__138.214
>>         <mailto:sip%253Aalice at 93.187.138.214>>>;tag=trhh9viigs
>>
>>
>>         Call-ID: fvgga4ikm8vrvuji0g0n
>>         CSeq: 6228 INVITE
>>         Content-Length: 0
>>
>>
>>         11(14926) DEBUG: websocket [ws_frame.c:713]: ws_frame_transmit():
>> Tx
>>         message:
>>         SIP/2.0 488 Not Acceptable Here
>>         Via: SIP/2.0/WS
>>         ebhg3v0qb6fm.invalid;rport=__1034;received=213.233.85.55
>>         <tel:213.233.85.55>;branch=__z9hG4bK8048296
>>
>>         To: <sip:bob at 93.187.138.214 <mailto:sip%3Abob at 93.187.138.214>
>>         <mailto:sip%3Abob at 93.187.138.__214
>>         <mailto:sip%253Abob at 93.187.138.214>>>;tag=r6dc2287g9
>>
>>
>>         From: "Alice Test" <sip:alice at 93.187.138.214
>>         <mailto:sip%3Aalice at 93.187.138.214>
>>         <mailto:sip%3Aalice at 93.187.__138.214
>>         <mailto:sip%253Aalice at 93.187.138.214>>>;tag=trhh9viigs
>>
>>
>>         Call-ID: fvgga4ikm8vrvuji0g0n
>>         CSeq: 6228 INVITE
>>         Content-Length: 0
>>
>>
>>         Thank you.
>>
>>         Best regards,
>>         Mihai M
>>
>>
>>         _________________________________________________
>>
>>         SIP Express Router (SER) and Kamailio (OpenSER) - sr-users
>>         mailing list
>>         sr-users at lists.sip-router.org <mailto:sr-users at lists.sip-
>> router.org>
>>         http://lists.sip-router.org/__cgi-bin/mailman/listinfo/sr-__users<
>> http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users>
>>
>>
>>     _________________________________________________
>>
>>     SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing
>> list
>>     sr-users at lists.sip-router.org <mailto:sr-users at lists.sip-router.org>
>>     http://lists.sip-router.org/__cgi-bin/mailman/listinfo/sr-__users
>>
>>     <http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users>
>>
>>
>>
>>
>> _______________________________________________
>> SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list
>> sr-users at lists.sip-router.org
>> http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
>>
>>
> _______________________________________________
> SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list
> sr-users at lists.sip-router.org
> http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.sip-router.org/pipermail/sr-users/attachments/20140203/849c375e/attachment-0001.html>
-------------- next part --------------
12(10522) DEBUG: websocket [ws_frame.c:570]: decode_and_validate_ws_frame(): Rx (decoded): INVITE sip:bob at 93.187.138.214 SIP/2.0
Via: SIP/2.0/WS 3blp2abd65si.invalid;branch=z9hG4bK1481360
Max-Forwards: 69
To: <sip:bob at 93.187.138.214>
From: "Alice Test" <sip:alice at 93.187.138.214>;tag=jjoquvtcgk
Call-ID: 83fo3hj1ui9lnljfq7ha
CSeq: 5728 INVITE
Contact: <sip:m3ibr9dd at 3blp2abd65si.invalid;transport=ws;ob>
Allow: ACK,CANCEL,BYE,OPTIONS,INVITE
Content-Type: application/sdp
Supported: path, outbound, gruu
User-Agent: JsSIP 0.3.0
Content-Length: 2979

v=0
o=- 2725895473278526672 2 IN IP4 127.0.0.1
s=-
t=0 0
a=group:BUNDLE audio video
a=msid-semantic: WMS aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
m=audio 60833 RTP/SAVPF 111 103 0 8 106 105 13 126
c=IN IP4 213.233.85.51
a=rtcp:60833 IN IP4 213.233.85.51
a=candidate:3511930567 1 udp 2113937151 10.93.108.223 46469 typ host generation 0
a=candidate:3511930567 2 udp 2113937151 10.93.108.223 46469 typ host generation 0
a=candidate:2681221687 1 tcp 1509957375 10.93.108.223 0 typ host generation 0
a=candidate:2681221687 2 tcp 1509957375 10.93.108.223 0 typ host generation 0
a=candidate:1343998067 1 udp 1845501695 213.233.85.51 60833 typ srflx raddr 10.93.108.223 rport 46469 generation 0
a=candidate:1343998067 2 udp 1845501695 213.233.85.51 60833 typ srflx raddr 10.93.108.223 rport 46469 generation 0
a=ice-ufrag:qHYTPG2bcVSqNud0
a=ice-pwd:lFSwZ6c15+wbUneOn70PpFgx
a=ice-options:google-ice
a=mid:audio
a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
m=video 60833 RTP/SAVPF 100 116 117
c=IN IP4 213.233.85.51
a=rtcp:60833 IN IP4 213.233.85.51
a=candidate:3511930567 1 udp 2113937151 10.93.108.223 46469 typ host generation 0
a=candidate:3511930567 2 udp 2113937151 10.93.108.223 46469 typ host generation 0
a=candidate:2681221687 1 tcp 1509957375 10.93.108.223 0 typ host generation 0
a=candidate:2681221687 2 tcp 1509957375 10.93.108.223 0 typ host generation 0
a=candidate:1343998067 1 udp 1845501695 213.233.85.51 60833 typ srflx raddr 10.93.108.223 rport 46469 generation 0
a=candidate:1343998067 2 udp 1845501695 213.233.85.51 60833 typ srflx raddr 10.93.108.223 rport 46469 generation 0
a=ice-ufrag:qHYTPG2bcVSqNud0
a=ice-pwd:lFSwZ6c15+wbUneOn70PpFgx
a=ice-options:google-ice
a=mid:video
a=extmap:2 urn:ietf:params:rtp-hdrext:toffset
a=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:100 VP8/90000
a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300

12(10522) DEBUG: websocket [ws_frame.c:650]: ws_frame_receive(): Rx SIP message:
INVITE sip:bob at 93.187.138.214 SIP/2.0
Via: SIP/2.0/WS 3blp2abd65si.invalid;branch=z9hG4bK1481360
Max-Forwards: 69
To: <sip:bob at 93.187.138.214>
From: "Alice Test" <sip:alice at 93.187.138.214>;tag=jjoquvtcgk
Call-ID: 83fo3hj1ui9lnljfq7ha
CSeq: 5728 INVITE
Contact: <sip:m3ibr9dd at 3blp2abd65si.invalid;transport=ws;ob>
Allow: ACK,CANCEL,BYE,OPTIONS,INVITE
Content-Type: application/sdp
Supported: path, outbound, gruu
User-Agent: JsSIP 0.3.0
Content-Length: 2979

v=0
o=- 2725895473278526672 2 IN IP4 127.0.0.1
s=-
t=0 0
a=group:BUNDLE audio video
a=msid-semantic: WMS aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
m=audio 60833 RTP/SAVPF 111 103 0 8 106 105 13 126
c=IN IP4 213.233.85.51
a=rtcp:60833 IN IP4 213.233.85.51
a=candidate:3511930567 1 udp 2113937151 10.93.108.223 46469 typ host generation 0
a=candidate:3511930567 2 udp 2113937151 10.93.108.223 46469 typ host generation 0
a=candidate:2681221687 1 tcp 1509957375 10.93.108.223 0 typ host generation 0
a=candidate:2681221687 2 tcp 1509957375 10.93.108.223 0 typ host generation 0
a=candidate:1343998067 1 udp 1845501695 213.233.85.51 60833 typ srflx raddr 10.93.108.223 rport 46469 generation 0
a=candidate:1343998067 2 udp 1845501695 213.233.85.51 60833 typ srflx raddr 10.93.108.223 rport 46469 generation 0
a=ice-ufrag:qHYTPG2bcVSqNud0
a=ice-pwd:lFSwZ6c15+wbUneOn70PpFgx
a=ice-options:google-ice
a=mid:audio
a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
m=video 60833 RTP/SAVPF 100 116 117
c=IN IP4 213.233.85.51
a=rtcp:60833 IN IP4 213.233.85.51
a=candidate:3511930567 1 udp 2113937151 10.93.108.223 46469 typ host generation 0
a=candidate:3511930567 2 udp 2113937151 10.93.108.223 46469 typ host generation 0
a=candidate:2681221687 1 tcp 1509957375 10.93.108.223 0 typ host generation 0
a=candidate:2681221687 2 tcp 1509957375 10.93.108.223 0 typ host generation 0
a=candidate:1343998067 1 udp 1845501695 213.233.85.51 60833 typ srflx raddr 10.93.108.223 rport 46469 generation 0
a=candidate:1343998067 2 udp 1845501695 213.233.85.51 60833 typ srflx raddr 10.93.108.223 rport 46469 generation 0
a=ice-ufrag:qHYTPG2bcVSqNud0
a=ice-pwd:lFSwZ6c15+wbUneOn70PpFgx
a=ice-options:google-ice
a=mid:video
a=extmap:2 urn:ietf:params:rtp-hdrext:toffset
a=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:100 VP8/90000
a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300

12(10522) DEBUG: <core> [parser/msg_parser.c:623]: parse_msg(): SIP Request:
12(10522) DEBUG: <core> [parser/msg_parser.c:625]: parse_msg():  method:  <INVITE>
12(10522) DEBUG: <core> [parser/msg_parser.c:627]: parse_msg():  uri:     <sip:bob at 93.187.138.214>
12(10522) DEBUG: <core> [parser/msg_parser.c:629]: parse_msg():  version: <SIP/2.0>
12(10522) DEBUG: <core> [parser/parse_via.c:1284]: parse_via_param(): Found param type 232, <branch> = <z9hG4bK1481360>; state=16
12(10522) DEBUG: <core> [parser/parse_via.c:2672]: parse_via(): end of header reached, state=5
12(10522) DEBUG: <core> [parser/msg_parser.c:513]: parse_headers(): parse_headers: Via found, flags=2
12(10522) DEBUG: <core> [parser/msg_parser.c:515]: parse_headers(): parse_headers: this is the first via
12(10522) DEBUG: <core> [receive.c:152]: receive_msg(): After parse_msg...
12(10522) DEBUG: <core> [receive.c:193]: receive_msg(): preparing to run routing scripts...
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=539 a=5 n=route
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=654 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=649 a=25 n=mf_process_maxfwd_header
12(10522) DEBUG: maxfwd [mf_funcs.c:85]: is_maxfwd_present(): value = 69
12(10522) DEBUG: maxfwd [maxfwd.c:161]: process_maxfwd_header(): value 69 decreased to 16
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=659 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=654 a=26 n=sanity_check
12(10522) DEBUG: <core> [parser/parse_addr_spec.c:885]: parse_addr_spec(): end of header reached, state=10
12(10522) DEBUG: <core> [parser/msg_parser.c:190]: get_hdr_field(): DEBUG: get_hdr_field: <To> [26]; uri=[sip:bob at 93.187.138.214]
12(10522) DEBUG: <core> [parser/msg_parser.c:192]: get_hdr_field(): DEBUG: to body [<sip:bob at 93.187.138.214>
]
12(10522) DEBUG: <core> [parser/msg_parser.c:170]: get_hdr_field(): get_hdr_field: cseq <CSeq>: <5728> <INVITE>
12(10522) DEBUG: <core> [parser/msg_parser.c:204]: get_hdr_field(): DEBUG: get_hdr_body : content_length=2979
12(10522) DEBUG: <core> [parser/msg_parser.c:106]: get_hdr_field(): found end of header
12(10522) DEBUG: <core> [parser/parse_addr_spec.c:176]: parse_to_param(): DEBUG: add_param: tag=jjoquvtcgk
12(10522) DEBUG: <core> [parser/parse_addr_spec.c:885]: parse_addr_spec(): end of header reached, state=29
12(10522) DEBUG: sanity [mod_sanity.c:255]: w_sanity_check(): sanity checks result: 1
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=542 a=5 n=route
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=674 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=663 a=55 n=force_rport
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=673 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=664 a=25 n=is_method
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=673 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=666 a=25 n=is_method
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=672 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=667 a=24 n=add_contact_alias
12(10522) DEBUG: nathelper [nathelper.c:959]: add_contact_alias_0_f(): contact uri host is not an ip address
12(10522) DEBUG: nathelper [nathelper.c:1036]: add_contact_alias_0_f(): adding param <;alias=213.233.85.51~11534~5>
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=545 a=5 n=route
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=852 a=55 n=force_rport
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=862 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=853 a=25 n=nat_uac_test
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=858 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=854 a=25 n=is_method
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=857 a=24 n=add_contact_alias
12(10522) DEBUG: nathelper [nathelper.c:959]: add_contact_alias_0_f(): contact uri host is not an ip address
12(10522) DEBUG: nathelper [nathelper.c:1036]: add_contact_alias_0_f(): adding param <;alias=213.233.85.51~11534~5>
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=859 a=39 n=setflag
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=862 a=2 n=return
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=557 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=549 a=25 n=is_method
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=557 a=5 n=route
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=719 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=678 a=24 n=has_totag
12(10522) DEBUG: siputils [checks.c:103]: has_totag(): no totag
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=561 a=24 n=t_check_trans
12(10522) DEBUG: tm [t_lookup.c:1071]: t_check_msg(): DEBUG: t_check_msg: msg id=3 global id=2 T start=(nil)
12(10522) DEBUG: tm [t_lookup.c:527]: t_lookup_request(): t_lookup_request: start searching: hash=52244, isACK=0
12(10522) DEBUG: tm [t_lookup.c:485]: matching_3261(): DEBUG: RFC3261 transaction matching failed
12(10522) DEBUG: tm [t_lookup.c:709]: t_lookup_request(): DEBUG: t_lookup_request: no transaction found
12(10522) DEBUG: tm [t_lookup.c:1140]: t_check_msg(): DEBUG: t_check_msg: msg id=3 global id=3 T end=(nil)
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=564 a=5 n=route
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=846 a=2 n=return
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=568 a=25 n=remove_hf
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=573 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=569 a=25 n=is_method
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=570 a=24 n=record_route
12(10522) DEBUG: rr [record.c:115]: get_custom_user(): invalid AVP value, using default user from RURI
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=579 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=573 a=25 n=is_method
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=575 a=39 n=setflag
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=579 a=5 n=route
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=1039 a=16 n=if
12(10522) DEBUG: <core> [socket_info.c:583]: grep_sock_info(): grep_sock_info - checking if host==us: 14==14 && [93.187.138.214] == [93.187.138.214]
12(10522) DEBUG: <core> [socket_info.c:587]: grep_sock_info(): grep_sock_info - checking if port 5060 (advertise 0) matches port 5060
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=584 a=5 n=route
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=806 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=781 a=25 n=is_method
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=782 a=2 n=return
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=587 a=5 n=route
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=738 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=723 a=25 n=is_method
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=597 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=597 a=5 n=route
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=1073 a=2 n=return
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=600 a=5 n=route
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=756 a=63 n=assign
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=773 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=757 a=25 n=lookup
12(10522) DEBUG: registrar [lookup.c:181]: lookup(): contact for [bob] found by address
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=777 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=773 a=25 n=is_method
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=775 a=39 n=setflag
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=602 a=5 n=route
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=613 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=610 a=25 n=is_method
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=612 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=611 a=25 n=t_is_set
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=611 a=25 n=t_on_branch
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=616 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=613 a=25 n=is_method
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=615 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=614 a=25 n=t_is_set
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=614 a=25 n=t_on_reply
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=620 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=616 a=25 n=is_method
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=618 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=617 a=25 n=t_is_set
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=617 a=25 n=t_on_failure
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=623 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=620 a=24 n=t_relay
12(10522) DEBUG: tm [t_lookup.c:1372]: t_newtran(): DEBUG: t_newtran: msg id=3 , global msg id=3 , T on entrance=(nil)
12(10522) DEBUG: tm [t_lookup.c:527]: t_lookup_request(): t_lookup_request: start searching: hash=52244, isACK=0
12(10522) DEBUG: tm [t_lookup.c:485]: matching_3261(): DEBUG: RFC3261 transaction matching failed
12(10522) DEBUG: tm [t_lookup.c:709]: t_lookup_request(): DEBUG: t_lookup_request: no transaction found
12(10522) DEBUG: tm [t_hooks.c:374]: run_reqin_callbacks_internal(): DBG: trans=0x7fdd1441bdc8, callback type 1, id 0 entered
12(10522) DEBUG: <core> [md5utils.c:67]: MD5StringArray(): DEBUG: MD5 calculated: 90b29ea99b57909f04b0e375a5beae03
12(10522) DEBUG: tm [t_funcs.c:347]: t_relay_to(): SER: new INVITE
12(10522) DEBUG: <core> [msg_translator.c:204]: check_via_address(): check_via_address(213.233.85.51, 3blp2abd65si.invalid, 0)
12(10522) DEBUG: <core> [mem/shm_mem.c:111]: _shm_resize(): WARNING:vqm_resize: resize(0) called
12(10522) DEBUG: websocket [ws_frame.c:713]: ws_frame_transmit(): Tx message:
SIP/2.0 100 trying -- your call is important to us
Via: SIP/2.0/WS 3blp2abd65si.invalid;branch=z9hG4bK1481360;rport=11534;received=213.233.85.51
To: <sip:bob at 93.187.138.214>
From: "Alice Test" <sip:alice at 93.187.138.214>;tag=jjoquvtcgk
Call-ID: 83fo3hj1ui9lnljfq7ha
CSeq: 5728 INVITE
Server: kamailio (4.1.1 (x86_64/linux))
Content-Length: 0


12(10522) DEBUG: websocket [ws_frame.c:146]: encode_and_send_ws_frame(): encoding WebSocket frame
12(10522) DEBUG: websocket [ws_frame.c:177]: encode_and_send_ws_frame(): supported non-control frame: 0x1
12(10522) DEBUG: <core> [tcp_main.c:2320]: tcpconn_send_put(): tcp_send: send from reader (10522 (12)), reusing fd
12(10522) DEBUG: <core> [tcp_main.c:2556]: tcpconn_do_send(): tcp_send: sending...
12(10522) DEBUG: <core> [tcp_main.c:2590]: tcpconn_do_send(): tcp_send: after real write: c= 0x7fdd14417428 n=355 fd=8
12(10522) DEBUG: <core> [tcp_main.c:2591]: tcpconn_do_send(): tcp_send: buf=
~_SIP/2.0 100 trying -- your call is important to us
Via: SIP/2.0/WS 3blp2abd65si.invalid;branch=z9hG4bK1481360;rport=11534;received=213.233.85.51
To: <sip:bob at 93.187.138.214>
From: "Alice Test" <sip:alice at 93.187.138.214>;tag=jjoquvtcgk
Call-ID: 83fo3hj1ui9lnljfq7ha
CSeq: 5728 INVITE
Server: kamailio (4.1.1 (x86_64/linux))
Content-Length: 0


12(10522) DEBUG: tm [t_reply.c:728]: _reply_light(): DEBUG: reply sent out. buf=0x7fdd1c545828: SIP/2.0 100 trying -..., shmem=0x7fdd1441f678: SIP/2.0 100 trying -
12(10522) DEBUG: tm [t_reply.c:738]: _reply_light(): DEBUG: _reply_light: finished
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=1120 a=25 n=xdbg
12(10522) DEBUG: <script>: new branch [0] to sip:dfh0am2o at 24ek0ul9etmp.invalid;transport=ws
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=1121 a=5 n=route
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=875 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=868 a=24 n=is_request
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=874 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=869 a=24 n=has_totag
12(10522) DEBUG: siputils [checks.c:103]: has_totag(): no totag
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=878 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=875 a=41 n=isflagset
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=878 a=26 n=rtpproxy_manage
12(10522) DEBUG: <core> [parser/sdp/sdp_helpr_funcs.c:565]: extract_mediaip(): located IP address [127.0.0.1] in `o=' field
12(10522) DEBUG: <core> [parser/sdp/sdp_helpr_funcs.c:565]: extract_mediaip(): located IP address [213.233.85.51] in `c=' field
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ice-ufrag:qHYTPG2bcVSqNud0
a=ice-pwd:lFSwZ6c15+wbUneOn70PpFgx
a=ice-options:google-ice
a=mid:audio
a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ice-pwd:lFSwZ6c15+wbUneOn70PpFgx
a=ice-options:google-ice
a=mid:audio
a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ice-options:google-ice
a=mid:audio
a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=mid:audio
a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=maxptime:60
a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
'
12(10522) DEBUG: <core> [parser/sdp/sdp_helpr_funcs.c:565]: extract_mediaip(): located IP address [213.233.85.51] in `c=' field
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ice-ufrag:qHYTPG2bcVSqNud0
a=ice-pwd:lFSwZ6c15+wbUneOn70PpFgx
a=ice-options:google-ice
a=mid:video
a=extmap:2 urn:ietf:params:rtp-hdrext:toffset
a=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:100 VP8/90000
a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ice-pwd:lFSwZ6c15+wbUneOn70PpFgx
a=ice-options:google-ice
a=mid:video
a=extmap:2 urn:ietf:params:rtp-hdrext:toffset
a=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:100 VP8/90000
a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ice-options:google-ice
a=mid:video
a=extmap:2 urn:ietf:params:rtp-hdrext:toffset
a=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:100 VP8/90000
a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=mid:video
a=extmap:2 urn:ietf:params:rtp-hdrext:toffset
a=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:100 VP8/90000
a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=extmap:2 urn:ietf:params:rtp-hdrext:toffset
a=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:100 VP8/90000
a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=extmap:3 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time
a=sendrecv
a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:100 VP8/90000
a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=rtcp-mux
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:100 VP8/90000
a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:100 VP8/90000
a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: <core> [parser/sdp/sdp.c:574]: parse_sdp_session(): ignoring unknown type in a= line: `a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
'
12(10522) DEBUG: rtpproxy-ng [rtpproxy_funcs.c:148]: check_content_type(): type <application/sdp> found valid
12(10522) DEBUG: rtpproxy-ng [rtpproxy.c:1333]: rtpp_function_call(): proxy reply: d3:sdp1889:v=0
o=- 2725895473278526672 2 IN IP4 127.0.0.1
s=-
t=0 0
a=group:BUNDLE audio video
a=msid-semantic: WMS aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ice-lite
m=audio 30212 RTP/SAVPF 111 103 0 8 106 105 13 126
c=IN IP4 93.187.138.214
a=mid:audio
a=sendrecv
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=rtcp:30213
a=ice-ufrag:php5g5AV
a=ice-pwd:9daaZNfNAc3dZvlIv39qDFK0X83b
a=candidate:8JGnwCAu0icAoJnr 1 UDP 2130706432 93.187.138.214 30212 typ host
a=candidate:8JGnwCAu0icAoJnr 2 UDP 2130706431 93.187.138.214 30213 typ host
m=video 30212 RTP/SAVPF 100 116 117
c=IN IP4 93.187.138.214
a=mid:video
a=sendrecv
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:100 VP8/90000
a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
a=rtcp:30213
a=ice-ufrag:php5g5AV
a=ice-pwd:9daaZNfNAc3dZvlIv39qDFK0X83b
a=candidate:8JGnwCAu0icAoJnr 1 UDP 2130706432 93.187.138.214 30212 typ host
a=candidate:8JGnwCAu0icAoJnr 2 UDP 2130706431 93.187.138.214 30213 typ host
6:result2:oke
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=896 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=891 a=24 n=is_request
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=895 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=892 a=24 n=has_totag
12(10522) DEBUG: siputils [checks.c:103]: has_totag(): no totag
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=893 a=25 n=add_rr_param
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=902 a=16 n=if
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=896 a=24 n=is_reply
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=902 a=2 n=return
12(10522) DEBUG: <core> [msg_translator.c:456]: clen_builder(): clen_builder: content-length: 1889 (1889)
12(10522) DEBUG: <core> [msg_translator.c:204]: check_via_address(): check_via_address(213.233.85.51, 3blp2abd65si.invalid, 0)
12(10522) DEBUG: websocket [ws_frame.c:713]: ws_frame_transmit(): Tx message:
INVITE sip:dfh0am2o at 24ek0ul9etmp.invalid;transport=ws SIP/2.0
Record-Route: <sip:bob at 93.187.138.214:5040;transport=ws;lr=on;ftag=jjoquvtcgk;nat=yes>
Via: SIP/2.0/WS  93.187.138.214:5040;branch=z9hG4bK41cc.90b29ea99b57909f04b0e375a5beae03.0
Via: SIP/2.0/WS 3blp2abd65si.invalid;rport=11534;received=213.233.85.51;branch=z9hG4bK1481360
Max-Forwards: 16
To: <sip:bob at 93.187.138.214>
From: "Alice Test" <sip:alice at 93.187.138.214>;tag=jjoquvtcgk
Call-ID: 83fo3hj1ui9lnljfq7ha
CSeq: 5728 INVITE
Contact: <sip:m3ibr9dd at 3blp2abd65si.invalid;alias=213.233.85.51~11534~5;alias=213.233.85.51~11534~5;transport=ws;ob>
Allow: ACK,CANCEL,BYE,OPTIONS,INVITE
Content-Type: application/sdp
Supported: path, outbound, gruu
User-Agent: JsSIP 0.3.0
Content-Length: 1889

v=0
o=- 2725895473278526672 2 IN IP4 127.0.0.1
s=-
t=0 0
a=group:BUNDLE audio video
a=msid-semantic: WMS aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ice-lite
m=audio 30212 RTP/SAVPF 111 103 0 8 106 105 13 126
c=IN IP4 93.187.138.214
a=mid:audio
a=sendrecv
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=rtcp:30213
a=ice-ufrag:php5g5AV
a=ice-pwd:9daaZNfNAc3dZvlIv39qDFK0X83b
a=candidate:8JGnwCAu0icAoJnr 1 UDP 2130706432 93.187.138.214 30212 typ host
a=candidate:8JGnwCAu0icAoJnr 2 UDP 2130706431 93.187.138.214 30213 typ host
m=video 30212 RTP/SAVPF 100 116 117
c=IN IP4 93.187.138.214
a=mid:video
a=sendrecv
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:100 VP8/90000
a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
a=rtcp:30213
a=ice-ufrag:php5g5AV
a=ice-pwd:9daaZNfNAc3dZvlIv39qDFK0X83b
a=candidate:8JGnwCAu0icAoJnr 1 UDP 2130706432 93.187.138.214 30212 typ host
a=candidate:8JGnwCAu0icAoJnr 2 UDP 2130706431 93.187.138.214 30213 typ host

12(10522) DEBUG: websocket [ws_frame.c:146]: encode_and_send_ws_frame(): encoding WebSocket frame
12(10522) DEBUG: websocket [ws_frame.c:177]: encode_and_send_ws_frame(): supported non-control frame: 0x1
12(10522) DEBUG: <core> [tcp_main.c:2336]: tcpconn_send_put(): tcp_send: tcp connection found (0x7fdd14412908), acquiring fd
16(10526) DEBUG: <core> [tcp_main.c:3624]: handle_ser_child(): handle_ser_child: read response= 7fdd14412908, 2, fd -1 from 12 (10522)
12(10522) DEBUG: <core> [tcp_main.c:2347]: tcpconn_send_put(): tcp_send, c= 0x7fdd14412908, n=16
12(10522) DEBUG: <core> [tcp_main.c:2377]: tcpconn_send_put(): tcp_send: after receive_fd: c= 0x7fdd14412908 n=8 fd=9
12(10522) DEBUG: <core> [tcp_main.c:2556]: tcpconn_do_send(): tcp_send: sending...
12(10522) DEBUG: <core> [tcp_main.c:2590]: tcpconn_do_send(): tcp_send: after real write: c= 0x7fdd14412908 n=2660 fd=9
12(10522) DEBUG: <core> [tcp_main.c:2591]: tcpconn_do_send(): tcp_send: buf=
~
`INVITE sip:dfh0am2o at 24ek0ul9etmp.invalid;transport=ws SIP/2.0
Record-Route: <sip:bob at 93.187.138.214:5040;transport=ws;lr=on;ftag=jjoquvtcgk;nat=yes>
Via: SIP/2.0/WS  93.187.138.214:5040;branch=z9hG4bK41cc.90b29ea99b57909f04b0e375a5beae03.0
Via: SIP/2.0/WS 3blp2abd65si.invalid;rport=11534;received=213.233.85.51;branch=z9hG4bK1481360
Max-Forwards: 16
To: <sip:bob at 93.187.138.214>
From: "Alice Test" <sip:alice at 93.187.138.214>;tag=jjoquvtcgk
Call-ID: 83fo3hj1ui9lnljfq7ha
CSeq: 5728 INVITE
Contact: <sip:m3ibr9dd at 3blp2abd65si.invalid;alias=213.233.85.51~11534~5;alias=213.233.85.51~11534~5;transport=ws;ob>
Allow: ACK,CANCEL,BYE,OPTIONS,INVITE
Content-Type: application/sdp
Supported: path, outbound, gruu
User-Agent: JsSIP 0.3.0
Content-Length: 1889

v=0
o=- 2725895473278526672 2 IN IP4 127.0.0.1
s=-
t=0 0
a=group:BUNDLE audio video
a=msid-semantic: WMS aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ice-lite
m=audio 30212 RTP/SAVPF 111 103 0 8 106 105 13 126
c=IN IP4 93.187.138.214
a=mid:audio
a=sendrecv
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:111 opus/48000/2
a=fmtp:111 minptime=10
a=rtpmap:103 ISAC/16000
a=rtpmap:0 PCMU/8000
a=rtpmap:8 PCMA/8000
a=rtpmap:106 CN/32000
a=rtpmap:105 CN/16000
a=rtpmap:13 CN/8000
a=rtpmap:126 telephone-event/8000
a=maxptime:60
a=ssrc:1682658145 cname:EeH2m/UDsTmjESZJ
a=ssrc:1682658145 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=ssrc:1682658145 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:1682658145 label:ce047ce9-966f-4f8e-ba2a-35a4b53c70bd
a=rtcp:30213
a=ice-ufrag:php5g5AV
a=ice-pwd:9daaZNfNAc3dZvlIv39qDFK0X83b
a=candidate:8JGnwCAu0icAoJnr 1 UDP 2130706432 93.187.138.214 30212 typ host
a=candidate:8JGnwCAu0icAoJnr 2 UDP 2130706431 93.187.138.214 30213 typ host
m=video 30212 RTP/SAVPF 100 116 117
c=IN IP4 93.187.138.214
a=mid:video
a=sendrecv
a=crypto:1 AES_CM_128_HMAC_SHA1_80 inline:5l5GHf/V+nznoUBfjYCRPAMy4SM0QJP6vyKRIGiF
a=rtpmap:100 VP8/90000
a=rtcp-fb:100 ccm fir
a=rtcp-fb:100 nack
a=rtcp-fb:100 goog-remb
a=rtpmap:116 red/90000
a=rtpmap:117 ulpfec/90000
a=ssrc:3343787012 cname:EeH2m/UDsTmjESZJ
a=ssrc:3343787012 msid:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT e55710e5-1282-4c47-8bad-b6d3c45a0300
a=ssrc:3343787012 mslabel:aL1F90U865Tb0MKZkjZ5UrqNzvH5TEG9fgbT
a=ssrc:3343787012 label:e55710e5-1282-4c47-8bad-b6d3c45a0300
a=rtcp:30213
a=ice-ufrag:php5g5AV
a=ice-pwd:9daaZNfNAc3dZvlIv39qDFK0X83b
a=candidate:8JGnwCAu0icAoJnr 1 UDP 2130706432 93.187.138.214 30212 typ host
a=candidate:8JGnwCAu0icAoJnr 2 UDP 2130706431 93.187.138.214 30213 typ host

12(10522) DEBUG: tm [t_funcs.c:394]: t_relay_to(): SER: new transaction fwd'ed
12(10522) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=623 a=2 n=exit
12(10522) DEBUG: <core> [usr_avp.c:644]: destroy_avp_list(): DEBUG:destroy_avp_list: destroying list (nil)
12(10522) DEBUG: <core> [usr_avp.c:644]: destroy_avp_list(): DEBUG:destroy_avp_list: destroying list (nil)
12(10522) DEBUG: <core> [usr_avp.c:644]: destroy_avp_list(): DEBUG:destroy_avp_list: destroying list (nil)
12(10522) DEBUG: <core> [usr_avp.c:644]: destroy_avp_list(): DEBUG:destroy_avp_list: destroying list (nil)
12(10522) DEBUG: <core> [usr_avp.c:644]: destroy_avp_list(): DEBUG:destroy_avp_list: destroying list (nil)
12(10522) DEBUG: <core> [usr_avp.c:644]: destroy_avp_list(): DEBUG:destroy_avp_list: destroying list (nil)
12(10522) DEBUG: <core> [xavp.c:448]: xavp_destroy_list(): destroying xavp list (nil)
12(10522) DEBUG: <core> [receive.c:296]: receive_msg(): receive_msg: cleaning up
12(10522) DEBUG: <core> [parser/sdp/sdp.c:793]: free_sdp(): _sdp = 0x7fdd1c58f158
12(10522) DEBUG: <core> [parser/sdp/sdp.c:795]: free_sdp(): sdp = 0x7fdd1c542a98
12(10522) DEBUG: <core> [parser/sdp/sdp.c:797]: free_sdp(): session = 0x7fdd1c542b38
16(10526) DEBUG: <core> [io_wait.h:617]: io_watch_del(): DBG: io_watch_del (0x89af40, 31, -1, 0x0) fd_no=22 called
16(10526) DEBUG: <core> [tcp_main.c:4302]: handle_tcpconn_ev(): tcp: DBG: sending to child, events 1
16(10526) DEBUG: <core> [tcp_main.c:3973]: send2child(): selected tcp worker 1 13(10523) for activity on [tcp:93.187.138.214:5040], 0x7fdd14412908
13(10523) DEBUG: <core> [tcp_read.c:1510]: handle_io(): received n=8 con=0x7fdd14412908, fd=8
13(10523) DEBUG: <core> [tcp_read.c:1138]: ws_process_msg(): WebSocket Message: [[>>>
?;á?h]? :?
$?of?Us??m}¨?&?C?
,Ö
'? %?$?<<<]]
13(10523) DEBUG: websocket [ws_frame.c:416]: decode_and_validate_ws_frame(): decoding WebSocket frame
13(10523) DEBUG: websocket [ws_frame.c:466]: decode_and_validate_ws_frame(): supported non-control frame: 0x1
13(10523) DEBUG: websocket [ws_frame.c:570]: decode_and_validate_ws_frame(): Rx (decoded): SIP/2.0 100 Trying
Via: SIP/2.0/WS  93.187.138.214:5040;branch=z9hG4bK41cc.90b29ea99b57909f04b0e375a5beae03.0
Via: SIP/2.0/WS 3blp2abd65si.invalid;rport=11534;received=213.233.85.51;branch=z9hG4bK1481360
To: <sip:bob at 93.187.138.214>;tag=4scdrhm8e3
From: "Alice Test" <sip:alice at 93.187.138.214>;tag=jjoquvtcgk
Call-ID: 83fo3hj1ui9lnljfq7ha
CSeq: 5728 INVITE
Content-Length: 0


13(10523) DEBUG: websocket [ws_frame.c:650]: ws_frame_receive(): Rx SIP message:
SIP/2.0 100 Trying
Via: SIP/2.0/WS  93.187.138.214:5040;branch=z9hG4bK41cc.90b29ea99b57909f04b0e375a5beae03.0
Via: SIP/2.0/WS 3blp2abd65si.invalid;rport=11534;received=213.233.85.51;branch=z9hG4bK1481360
To: <sip:bob at 93.187.138.214>;tag=4scdrhm8e3
From: "Alice Test" <sip:alice at 93.187.138.214>;tag=jjoquvtcgk
Call-ID: 83fo3hj1ui9lnljfq7ha
CSeq: 5728 INVITE
Content-Length: 0


13(10523) DEBUG: <core> [parser/msg_parser.c:633]: parse_msg(): SIP Reply  (status):
13(10523) DEBUG: <core> [parser/msg_parser.c:635]: parse_msg():  version: <SIP/2.0>
13(10523) DEBUG: <core> [parser/msg_parser.c:637]: parse_msg():  status:  <100>
13(10523) DEBUG: <core> [parser/msg_parser.c:639]: parse_msg():  reason:  <Trying>
13(10523) DEBUG: <core> [parser/parse_via.c:1284]: parse_via_param(): Found param type 232, <branch> = <z9hG4bK41cc.90b29ea99b57909f04b0e375a5beae03.0>; state=16
13(10523) DEBUG: <core> [parser/parse_via.c:2672]: parse_via(): end of header reached, state=5
13(10523) DEBUG: <core> [parser/msg_parser.c:513]: parse_headers(): parse_headers: Via found, flags=2
13(10523) DEBUG: <core> [parser/msg_parser.c:515]: parse_headers(): parse_headers: this is the first via
13(10523) DEBUG: <core> [receive.c:152]: receive_msg(): After parse_msg...
13(10523) DEBUG: <core> [parser/parse_via.c:1284]: parse_via_param(): Found param type 235, <rport> = <11534>; state=6
13(10523) DEBUG: <core> [parser/parse_via.c:1284]: parse_via_param(): Found param type 234, <received> = <213.233.85.51>; state=6
13(10523) DEBUG: <core> [parser/parse_via.c:1284]: parse_via_param(): Found param type 232, <branch> = <z9hG4bK1481360>; state=16
13(10523) DEBUG: <core> [parser/parse_via.c:2672]: parse_via(): end of header reached, state=5
13(10523) DEBUG: <core> [parser/msg_parser.c:513]: parse_headers(): parse_headers: Via found, flags=4
13(10523) DEBUG: <core> [parser/msg_parser.c:526]: parse_headers(): parse_headers: this is the second via
13(10523) DEBUG: tm [t_lookup.c:1071]: t_check_msg(): DEBUG: t_check_msg: msg id=3 global id=2 T start=(nil)
13(10523) DEBUG: <core> [parser/parse_addr_spec.c:176]: parse_to_param(): DEBUG: add_param: tag=4scdrhm8e3
13(10523) DEBUG: <core> [parser/parse_addr_spec.c:885]: parse_addr_spec(): end of header reached, state=29
13(10523) DEBUG: <core> [parser/msg_parser.c:190]: get_hdr_field(): DEBUG: get_hdr_field: <To> [41]; uri=[sip:bob at 93.187.138.214]
13(10523) DEBUG: <core> [parser/msg_parser.c:192]: get_hdr_field(): DEBUG: to body [<sip:bob at 93.187.138.214>]
13(10523) DEBUG: <core> [parser/msg_parser.c:170]: get_hdr_field(): get_hdr_field: cseq <CSeq>: <5728> <INVITE>
13(10523) DEBUG: tm [t_lookup.c:949]: t_reply_matching(): DEBUG: t_reply_matching: hash 52244 label 0 branch 0
13(10523) DEBUG: tm [t_lookup.c:1003]: t_reply_matching(): DEBUG: t_reply_matching: reply matched (T=0x7fdd1441bdc8)!
13(10523) DEBUG: tm [t_hooks.c:288]: run_trans_callbacks_internal(): DBG: trans=0x7fdd1441bdc8, callback type 2, id 0 entered
13(10523) DEBUG: acc [acc_logic.c:557]: tmcb_func(): acc callback called for t(0x7fdd1441bdc8) event type 2, reply code 100
13(10523) DEBUG: tm [t_lookup.c:1140]: t_check_msg(): DEBUG: t_check_msg: msg id=3 global id=3 T end=0x7fdd1441bdc8
13(10523) DEBUG: tm [t_reply.c:2206]: reply_received(): DEBUG: reply_received: org. status uas=100, uac[0]=0 local=0 is_invite=1)
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=1127 a=25 n=xdbg
13(10523) DEBUG: <script>: incoming reply
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=1133 a=16 n=if
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=1128 a=25 n=t_check_status
13(10523) DEBUG: tm [t_lookup.c:1071]: t_check_msg(): DEBUG: t_check_msg: msg id=3 global id=3 T start=0x7fdd1441bdc8
13(10523) DEBUG: tm [t_lookup.c:1143]: t_check_msg(): DEBUG: t_check_msg: T already found!
13(10523) DEBUG: tm [tm.c:1033]: t_check_status(): DEBUG:t_check_status: checked status is <100>
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=1137 a=16 n=if
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=1134 a=5 n=route
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=875 a=16 n=if
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=868 a=24 n=is_request
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=878 a=16 n=if
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=875 a=41 n=isflagset
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=878 a=26 n=rtpproxy_manage
13(10523) DEBUG: <core> [parser/msg_parser.c:204]: get_hdr_field(): DEBUG: get_hdr_body : content_length=0
13(10523) DEBUG: <core> [parser/msg_parser.c:106]: get_hdr_field(): found end of header
13(10523) DEBUG: <core> [parser/sdp/sdp.c:712]: parse_sdp(): message body has length zero
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=896 a=16 n=if
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=891 a=24 n=is_request
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=902 a=16 n=if
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=896 a=24 n=is_reply
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=900 a=16 n=if
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=897 a=25 n=isbflagset
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=898 a=24 n=add_contact_alias
13(10523) DEBUG: nathelper [nathelper.c:947]: add_contact_alias_0_f(): no contact header
13(10523) ERROR: *** cfgtrace: c=[/usr/local/etc/kamailio/kamailio-test-media.cfg] l=902 a=2 n=return
13(10523) DEBUG: tm [t_reply.c:1309]: t_should_relay_response(): ->>>>>>>>> T_code=100, new_code=100
13(10523) DEBUG: tm [t_reply.c:1827]: relay_reply(): DEBUG: relay_reply: branch=0, save=0, relay=-1 icode=0
13(10523) DEBUG: <core> [usr_avp.c:644]: destroy_avp_list(): DEBUG:destroy_avp_list: destroying list (nil)
13(10523) DEBUG: <core> [usr_avp.c:644]: destroy_avp_list(): DEBUG:destroy_avp_list: destroying list (nil)
13(10523) DEBUG: <core> [usr_avp.c:644]: destroy_avp_list(): DEBUG:destroy_avp_list: destroying list (nil)
13(10523) DEBUG: <core> [usr_avp.c:644]: destroy_avp_list(): DEBUG:destroy_avp_list: destroying list (nil)
13(10523) DEBUG: <core> [usr_avp.c:644]: destroy_avp_list(): DEBUG:destroy_avp_list: destroying list (nil)
13(10523) DEBUG: <core> [usr_avp.c:644]: destroy_avp_list(): DEBUG:destroy_avp_list: destroying list (nil)
13(10523) DEBUG: <core> [xavp.c:448]: xavp_destroy_list(): destroying xavp list (nil)
13(10523) DEBUG: <core> [receive.c:296]: receive_msg(): receive_msg: cleaning up
13(10523) DEBUG: <core> [io_wait.h:390]: io_watch_add(): DBG: io_watch_add(0x8df1e0, 8, 2, 0x7fdd14412908), fd_no=1
13(10523) DEBUG: <core> [tcp_read.c:1138]: ws_process_msg(): WebSocket Message: [[>>>
i?EjÔôC|ô9+Mô6'Z?0X?6\?}P?Mdj
                             13(10523) DEBUG: websocket [ws_frame.c:416]: decode_and_validate_ws_frame(): decoding WebSocket frame
13(10523) DEBUG: websocket [ws_frame.c:466]: decode_and_validate_ws_frame(): supported non-control frame: 0x1
13(10523) DEBUG: websocket [ws_frame.c:570]: decode_and_validate_ws_frame(): Rx (decoded): SIP/2.0 488 Not Acceptable Here
Via: SIP/2.0/WS  93.187.138.214:5040;branch=z9hG4bK41cc.90b29ea99b57909f04b0e375a5beae03.0
Via: SIP/2.0/WS 3blp2abd65si.invalid;rport=11534;received=213.233.85.51;branch=z9hG4bK1481360
To: <sip:bob at 93.187.138.214>;tag=sfq3d66o5b
From: "Alice Test" <sip:alice at 93.187.138.214>;tag=jjoquvtcgk
Call-ID: 83fo3hj1ui9lnljfq7ha
CSeq: 5728 INVITE
Content-Length: 0


13(10523) DEBUG: websocket [ws_frame.c:650]: ws_frame_receive(): Rx SIP message:
SIP/2.0 488 Not Acceptable Here
Via: SIP/2.0/WS  93.187.138.214:5040;branch=z9hG4bK41cc.90b29ea99b57909f04b0e375a5beae03.0
Via: SIP/2.0/WS 3blp2abd65si.invalid;rport=11534;received=213.233.85.51;branch=z9hG4bK1481360
To: <sip:bob at 93.187.138.214>;tag=sfq3d66o5b
From: "Alice Test" <sip:alice at 93.187.138.214>;tag=jjoquvtcgk
Call-ID: 83fo3hj1ui9lnljfq7ha
CSeq: 5728 INVITE
Content-Length: 0


13(10523) DEBUG: <core> [parser/msg_parser.c:633]: parse_msg(): SIP Reply  (status):
13(10523) DEBUG: <core> [parser/msg_parser.c:635]: parse_msg():  version: <SIP/2.0>
13(10523) DEBUG: <core> [parser/msg_parser.c:637]: parse_msg():  status:  <488>
13(10523) DEBUG: <core> [parser/msg_parser.c:639]: parse_msg():  reason:  <Not Acceptable Here>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: kamailio-test-media.cfg
Type: application/octet-stream
Size: 30335 bytes
Desc: not available
URL: <http://lists.sip-router.org/pipermail/sr-users/attachments/20140203/849c375e/attachment-0001.obj>


More information about the sr-users mailing list