Oh !<br><br>this is just this parameter ???<br>arghhhh .... I forgot this one ...<br><br>you&#39;re (again ;) right, Daniel ... many thanks !!!<br><br><br># -- ACC --<br>loadmodule &quot;acc.so&quot;<br>modparam(&quot;acc&quot;, &quot;log_level&quot;, 3)<br>
modparam(&quot;acc&quot;, &quot;log_flag&quot;, 1)<br>modparam(&quot;acc&quot;, &quot;log_missed_flag&quot;, 2)<br>modparam(&quot;acc&quot;, &quot;failed_transaction_flag&quot;, 3)<br>modparam(&quot;acc&quot;, &quot;report_ack&quot;, 0)<br>
modparam(&quot;acc&quot;, &quot;report_cancels&quot;, 1)<br>modparam(&quot;acc&quot;, &quot;early_media&quot;, 0)<br>modparam(&quot;acc&quot;, &quot;detect_direction&quot;, 1)<br><br>happy holidays too !<br><br><br>Bonnes fêtes à tous :)<br>
<br>.Sam.<br><br><br><div class="gmail_quote">On Sun, Dec 28, 2008 at 10:53 AM, Daniel-Constantin Mierla <span dir="ltr">&lt;<a href="mailto:miconda@gmail.com">miconda@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Hello,<br>
<br>
do you have the parameter to account the early media signaling set?<br>
<a href="http://kamailio.org/docs/modules/devel/acc.html#id2467932" target="_blank">http://kamailio.org/docs/modules/devel/acc.html#id2467932</a><br>
<br>
Happy holidays!<br>
Daniel<div class="Ih2E3d"><br>
<br>
<br>
On 12/24/08 16:32, Samuel Muller wrote:<br>
</div><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d">
Hello all,<br>
<br>
I just have a little question about this thing :<br>
<br>
when I start a call, my Radius receives before the session is established a &quot;failed&quot; in its accounting log.<br>
If I move the setflag() for rad acc and rad failed acc (or one of each, then the other one), the &quot;Start&quot; disappear - but I get the Stop.<br>
<br>
How to not take acc in charge when there is a 183 Session Progress ?<br>
<br>
here is the radius acc log :<br>
<br>
Code: &nbsp; &nbsp; &nbsp; Accounting-Request<br>
Identifier: 102<br>
Authentic: &nbsp;Z3z&lt;16&gt;^&lt;230&gt;&lt;251&gt;i&lt;233&gt;[6Q&lt;196&gt;&lt;12&gt;&lt;140&gt;&lt;25&gt;<br>
Attributes:<br>
 &nbsp; &nbsp;Acct-Status-Type = Failed<br>
 &nbsp; &nbsp;Service-Type = Sip-Session<br>
 &nbsp; &nbsp;Sip-Response-Code = 183<br>
 &nbsp; &nbsp;Sip-Method = &quot;&lt;1&gt;&quot;<br>
 &nbsp; &nbsp;Event-Timestamp = 1230128211<br>
 &nbsp; &nbsp;Sip-From-Tag = &quot;a3addce43738cc27o0&quot;<br>
 &nbsp; &nbsp;Sip-To-Tag = &quot;1c782477072&quot;<br></div>
 &nbsp; &nbsp;Acct-Session-Id = &quot;<a href="mailto:10bdf568-2821ed73@192.168.1.7" target="_blank">10bdf568-2821ed73@192.168.1.7</a> &lt;mailto:<a href="mailto:10bdf568-2821ed73@192.168.1.7" target="_blank">10bdf568-2821ed73@192.168.1.7</a>&gt;&quot;<div class="Ih2E3d">
<br>
 &nbsp; &nbsp;Sip-Method = &quot;INVITE&quot;<br>
 &nbsp; &nbsp;SER-From = &quot;0170645745&quot;<br>
 &nbsp; &nbsp;SER-To = &quot;0663128505&quot;<br></div>
 &nbsp; &nbsp;Sip-User-Digest-URI = &quot;<a href="mailto:sip%3A0663128505@sip.720.fr" target="_blank">sip:0663128505@sip.720.fr</a> &lt;mailto:<a href="mailto:sip%253A0663128505@sip.720.fr" target="_blank">sip%3A0663128505@sip.720.fr</a>&gt;&quot;<div>
<div></div><div class="Wj3C7c"><br>
 &nbsp; &nbsp;Sip-Req-URI = &quot;sip:0663128505@77.246.81.136:5060;transport=udp&quot;<br>
 &nbsp; &nbsp;Sip-Source-IP-Address = &quot;87.90.4.63&quot;<br>
 &nbsp; &nbsp;Sip-Source-Port = &quot;5060&quot;<br>
 &nbsp; &nbsp;NAS-Port = 5060<br>
 &nbsp; &nbsp;Acct-Delay-Time = 0<br>
 &nbsp; &nbsp;NAS-IP-Address = 192.168.60.9<br>
<br>
the setflag() are here :<br>
<br>
if (is_method(&quot;INVITE&quot;))<br>
 &nbsp; &nbsp; &nbsp; &nbsp;{<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;setflag(4); &nbsp; &nbsp;# flag &quot;radius acc&quot;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;setflag(5); &nbsp; &nbsp;# flag &quot;radius failed acc&quot;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;setflag(8); &nbsp; &nbsp; # flag &quot;dialog&quot;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;setflag(9); &nbsp; &nbsp; # flag &quot;session timer&quot;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;route(13);<br>
 &nbsp; &nbsp; &nbsp; &nbsp;}<br>
<br>
the only place I found the related &quot;183&quot; taken in charge in the kamailio.cfg is here :<br>
<br>
onreply_route[2]<br>
{<br>
 &nbsp; &nbsp;if (nat_uac_test(&quot;1&quot;))<br>
 &nbsp; &nbsp;{ fix_nated_contact(); }<br>
<br>
 &nbsp; &nbsp;if (isbflagset(14) &amp;&amp; status =~ &quot;(180|183|2[0-9][0-9])&quot;) &nbsp; &nbsp; &nbsp; &nbsp;#? branch flag nat<br>
 &nbsp; &nbsp;{<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;if (!search(&quot;^Content-Length:[ ]*0&quot;))<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;{ force_rtp_proxy(); }<br>
 &nbsp; &nbsp;}<br>
 &nbsp; &nbsp;exit;<br>
}<br>
<br>
in the kamailio log for this same call :<br>
<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_msg: SIP Reply &nbsp;(status):<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_msg: &nbsp;version: &lt;SIP/2.0&gt;<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_msg: &nbsp;status: &nbsp;&lt;100&gt;<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_msg: &nbsp;reason: &nbsp;&lt;Trying&gt;<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_headers: flags=2<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_via_param: found param type 232, &lt;branch&gt; = &lt;z9hG4bKbe63.1eddc1f3.0&gt;; state=16<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_via: end of header reached, state=5<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_headers: via found, flags=2<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_headers: this is the first via<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:receive_msg: After parse_msg...<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:grep_sock_info: checking if host==us: 13==13 &amp;&amp; &nbsp;[77.246.81.132] == [77.246.81.132]<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:grep_sock_info: checking if port 5060 matches port 5060<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:forward_reply: found module tm, passing reply to it<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:tm:t_check: start=0xffffffffffffffff<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_headers: flags=22<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_via_param: found param type 235, &lt;rport&gt; = &lt;5060&gt;; state=6<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_via_param: found param type 234, &lt;received&gt; = &lt;87.90.4.63&gt;; state=6<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_via_param: found param type 232, &lt;branch&gt; = &lt;z9hG4bK-8aeb8bb&gt;; state=16<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_via: end of header reached, state=5<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_headers: via found, flags=22<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_headers: parse_headers: this is the second via<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_to_param: tag=1c782477072<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_to: end of header reached, state=29<br></div></div>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_to: display={&quot;0663128505&quot;}, ruri={<a href="mailto:sip%3A0663128505@sip.720.fr" target="_blank">sip:0663128505@sip.720.fr</a> &lt;mailto:<a href="mailto:sip%253A0663128505@sip.720.fr" target="_blank">sip%3A0663128505@sip.720.fr</a>&gt;}<br>

Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:get_hdr_field: &lt;To&gt; [58]; uri=[<a href="mailto:sip%3A0663128505@sip.720.fr" target="_blank">sip:0663128505@sip.720.fr</a> &lt;mailto:<a href="mailto:sip%253A0663128505@sip.720.fr" target="_blank">sip%3A0663128505@sip.720.fr</a>&gt;] Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:get_hdr_field: to body [&quot;0663128505&quot; &lt;<a href="mailto:sip%3A0663128505@sip.720.fr" target="_blank">sip:0663128505@sip.720.fr</a> &lt;mailto:<a href="mailto:sip%253A0663128505@sip.720.fr" target="_blank">sip%3A0663128505@sip.720.fr</a>&gt;&gt;]<div>
<div></div><div class="Wj3C7c"><br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:get_hdr_field: cseq &lt;CSeq&gt;: &lt;102&gt; &lt;INVITE&gt;<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_headers: flags=8<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:tm:t_reply_matching: hash 14059 label 1058856417 branch 0<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:tm:t_reply_matching: REF_UNSAFE: after is 1<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:tm:t_reply_matching: reply matched (T=0x7fcc45ebb090)!<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:tm:run_trans_callbacks: trans=0x7fcc45ebb090, callback type 2, id 1 entered<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:tm:t_check: end=0x7fcc45ebb090<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:tm:reply_received: org. status uas=0, uac[0]=0 local=0 is_invite=1)<br>
Dec 24 15:16:51 ser0 kamailio[7748]: &nbsp;-NAT-ONREPLY-----------------------------<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:parse_headers: flags=80<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:get_hdr_field: content_length=0<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:get_hdr_field: found end of header<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:tm:t_should_relay_response: T_code=0, new_code=100<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:tm:relay_reply: branch=0, save=0, relay=-1<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:tm:set_timer: relative timeout is 60<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:tm:insert_timer_unsafe: [1]: 0x7fcc45ebb2e0 (95)<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:tm:t_unref: UNREF_UNSAFE: after is 0<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:destroy_avp_list: destroying list (nil)<br>
Dec 24 15:16:51 ser0 kamailio[7748]: DBG:core:receive_msg: cleaning up<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_msg: SIP Reply &nbsp;(status):<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_msg: &nbsp;version: &lt;SIP/2.0&gt;<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_msg: &nbsp;status: &nbsp;&lt;183&gt;<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_msg: &nbsp;reason: &nbsp;&lt;Session Progress&gt;<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: flags=2<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_via_param: found param type 232, &lt;branch&gt; = &lt;z9hG4bKbe63.1eddc1f3.0&gt;; state=16<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_via: end of header reached, state=5<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: via found, flags=2<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: this is the first via<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:receive_msg: After parse_msg...<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:grep_sock_info: checking if host==us: 13==13 &amp;&amp; &nbsp;[77.246.81.132] == [77.246.81.132]<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:grep_sock_info: checking if port 5060 matches port 5060<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:forward_reply: found module tm, passing reply to it<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:t_check: start=0xffffffffffffffff<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: flags=22<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_via_param: found param type 235, &lt;rport&gt; = &lt;5060&gt;; state=6<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_via_param: found param type 234, &lt;received&gt; = &lt;87.90.4.63&gt;; state=6<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_via_param: found param type 232, &lt;branch&gt; = &lt;z9hG4bK-8aeb8bb&gt;; state=16<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_via: end of header reached, state=5<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: via found, flags=22<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: parse_headers: this is the second via<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_to_param: tag=1c782477072<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_to: end of header reached, state=29<br></div></div>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_to: display={&quot;0663128505&quot;}, ruri={<a href="mailto:sip%3A0663128505@sip.720.fr" target="_blank">sip:0663128505@sip.720.fr</a> &lt;mailto:<a href="mailto:sip%253A0663128505@sip.720.fr" target="_blank">sip%3A0663128505@sip.720.fr</a>&gt;}<br>

Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:get_hdr_field: &lt;To&gt; [58]; uri=[<a href="mailto:sip%3A0663128505@sip.720.fr" target="_blank">sip:0663128505@sip.720.fr</a> &lt;mailto:<a href="mailto:sip%253A0663128505@sip.720.fr" target="_blank">sip%3A0663128505@sip.720.fr</a>&gt;] Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:get_hdr_field: to body [&quot;0663128505&quot; &lt;<a href="mailto:sip%3A0663128505@sip.720.fr" target="_blank">sip:0663128505@sip.720.fr</a> &lt;mailto:<a href="mailto:sip%253A0663128505@sip.720.fr" target="_blank">sip%3A0663128505@sip.720.fr</a>&gt;&gt;]<div class="Ih2E3d">
<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:get_hdr_field: cseq &lt;CSeq&gt;: &lt;102&gt; &lt;INVITE&gt;<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: flags=8<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:t_reply_matching: hash 14059 label 1058856417 branch 0<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:t_reply_matching: REF_UNSAFE: after is 1<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:t_reply_matching: reply matched (T=0x7fcc45ebb090)!<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:run_trans_callbacks: trans=0x7fcc45ebb090, callback type 2, id 1 entered<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: flags=8<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:t_check: end=0x7fcc45ebb090<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:reply_received: org. status uas=0, uac[0]=100 local=0 is_invite=1)<br>
Dec 24 15:16:51 ser0 kamailio[7747]: &nbsp;-NAT-ONREPLY-----------------------------<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: flags=80<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: flags=ffffffffffffffff<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:get_hdr_field: content_length=293<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:get_hdr_field: found end of header<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:nathelper:check_content_type: type &lt;application/sdp&gt; found valid<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: flags=40<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_to_param: tag=a3addce43738cc27o0<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_to: end of header reached, state=29<br></div>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_to: display={&quot;0170645745&quot;}, ruri={<a href="mailto:sip%3A0170645745@sip.720.fr" target="_blank">sip:0170645745@sip.720.fr</a> &lt;mailto:<a href="mailto:sip%253A0170645745@sip.720.fr" target="_blank">sip%3A0170645745@sip.720.fr</a>&gt;}<div class="Ih2E3d">
<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:nathelper:force_rtp_proxy2_f: proxy reply: 35934 77.246.81.133 Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:t_should_relay_response: T_code=0, new_code=183<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:relay_reply: branch=0, save=0, relay=0<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:run_trans_callbacks: trans=0x7fcc45ebb090, callback type 16, id 0 entered<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:dialog:run_dlg_callbacks: dialog=0x7fcc45ebc7c0, type=256<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:sst:sst_dialog_response_fwded_CB: Dialog seen REPLY 183 Session Progress<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: flags=2000<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: flags=ffffffffffffffff<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:clen_builder: content-length: 311 (311)<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:build_res_buf_from_sip_res: &nbsp;old size: 1027, new size: 983<br></div>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:build_res_buf_from_sip_res: copied size: orig:1025, new: 981, rest: 2 msg= SIP/2.0 183 Session Progress^M Via: SIP/2.0/UDP 192.168.1.7:5060;rport=5060;received=87.90.4.63;branch=z9hG4bK-8aeb8bb^M From: &quot;0170645745&quot; &lt;<a href="mailto:sip%3A0170645745@sip.720.fr" target="_blank">sip:0170645745@sip.720.fr</a> &lt;mailto:<a href="mailto:sip%253A0170645745@sip.720.fr" target="_blank">sip%3A0170645745@sip.720.fr</a>&gt;&gt;;tag=a3addce43738cc27o0^M To: &quot;0663128505&quot; &lt;<a href="mailto:sip%3A0663128505@sip.720.fr" target="_blank">sip:0663128505@sip.720.fr</a> &lt;mailto:<a href="mailto:sip%253A0663128505@sip.720.fr" target="_blank">sip%3A0663128505@sip.720.fr</a>&gt;&gt;;tag=1c782477072^M Call-ID: <a href="mailto:10bdf568-2821ed73@192.168.1.7" target="_blank">10bdf568-2821ed73@192.168.1.7</a> &lt;mailto:<a href="mailto:10bdf568-2821ed73@192.168.1.7" target="_blank">10bdf568-2821ed73@192.168.1.7</a>&gt;^M CSeq: 102 INVITE^M Contact: &lt;<a href="mailto:sip%3A61@77.246.81.136" target="_blank">sip:61@77.246.81.136</a> &lt;mailto:<a href="mailto:sip%253A61@77.246.81.136" target="_blank">sip%3A61@77.246.81.136</a>&gt;&gt;^M Record-Route: &lt;sip:77.246.81.132;lr=on;ftag=a3addce43738cc27o0;nat=yes;did=17a.36b075d2&gt;^M Supported: em,timer,replaces,path,resource-priority^M Allow: REGISTER,OPTIONS,INVITE,ACK,CANCEL,BYE,NOTIFY,PRACK,REFER,INFO,SUBSCRIBE,UPDATE^M Server: 720 DEGRES PSTN GW/v.5.40A.030.002^M Content-Type: application/sdp^M Content-Length: 311^M ^M v=0^M o=AudiocodesGW 782585440 782585110 IN IP4 77.246.81.136^M s=Phone-Call^M c=IN IP4 77.246.81.133^M t=0 0^M m=audio 35934 RTP/AVP 18 101^M a=rtpmap:18 G729/8000^M a=fmtp:18 annexb=yes^M a=rtpmap:101 telephone-event/<div class="Ih2E3d">
<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:_shm_resize: resize(0) called<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:relay_reply: sent buf=0x7936d8: SIP/2.0 1..., shmem=0x7fcc45ebef00: SIP/2.0 1<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:run_trans_callbacks: trans=0x7fcc45ebb090, callback type 128, id 1 entered<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:parse_headers: flags=14000<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:run_trans_callbacks: trans=0x7fcc45ebb090, callback type 128, id 0 entered<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:dialog:next_state_dlg: dialog 0x7fcc45ebc7c0 changed from state 1 to state 2, due event 2<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:set_timer: relative timeout is 60<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:insert_timer_unsafe: [1]: 0x7fcc45ebb2e0 (96)<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:tm:t_unref: UNREF_UNSAFE: after is 0<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:destroy_avp_list: destroying list (nil)<br>
Dec 24 15:16:51 ser0 kamailio[7747]: DBG:core:receive_msg: cleaning up<br>
Dec 24 15:16:51 ser0 kamailio[7753]: DBG:tm:utimer_routine: timer routine:4,tl=0x7fcc45ebb2b0 next=(nil), timeout=36400000<br>
<br>
<br>
<br>
<br>
-- <br>
Samuel MULLER<br>
</div><a href="mailto:sml@720.fr" target="_blank">sml@720.fr</a> &lt;mailto:<a href="mailto:sml@720.fr" target="_blank">sml@720.fr</a>&gt;<br>
------------------------------------------------------------------------<br>
<br>
_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.kamailio.org" target="_blank">Users@lists.kamailio.org</a><br>
<a href="http://lists.kamailio.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.kamailio.org/cgi-bin/mailman/listinfo/users</a><br>
 &nbsp;<br>
</blockquote>
<br>
-- <br>
Daniel-Constantin Mierla<br>
<a href="http://www.asipto.com" target="_blank">http://www.asipto.com</a><br>
<br>
</blockquote></div><br>