<html><head><style>body{font-family:Helvetica,Arial;font-size:13px}</style></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;"><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;">Hi,</div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;"><br></div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;">At this point in the code the call is already prepaid since the account has been found with the query:</div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;"><br></div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;"><span style="font-family: monospace; font-size: 12px; white-space: pre;">$query=sprintf("select * from %s where account = '%s'",addslashes($this-&gt;prepaid_table),addslashes($CDR-&gt;BillingPartyId));</span></div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;"><span style="font-family: monospace; font-size: 12px; white-space: pre;"><br></span></div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;">Normally if the normalized number starts with a 0 it is routed to PSTN, what in most cases has a price. If a number resolves over ENUM, the Normalized URI would not start with a 0, but will be a sip account.&nbsp;</div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;"><br></div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;">This is just a convention we made and therefore you also should not have accounts starting with a 0</div><div id="bloop_customfont" style="font-family:Helvetica,Arial;font-size:13px; color: rgba(0,0,0,1.0); margin: 0px; line-height: auto;"><br></div> <div id="bloop_sign_1412013809499613952" class="bloop_sign"><span style="font-family:helvetica,arial;font-size:13px"></span>--&nbsp;<br>Tijmen de Mes<br>AG-Projects</div> <div style="color:black"><br>From:&nbsp;<span style="color:black">Pavel Eremin</span> <a href="mailto:eremina.net@gmail.com">&lt;eremina.net@gmail.com&gt;</a><br>Reply:&nbsp;<span style="color:black">OpenSIPS users mailling list</span> <a href="mailto:users@lists.opensips.org">&lt;users@lists.opensips.org&gt;&gt;</a><br>Date:&nbsp;<span style="color:black">29 september 2014 at 18:30:00</span><br>To:&nbsp;<span style="color:black">OpenSIPS users mailling list</span> <a href="mailto:users@lists.opensips.org">&lt;users@lists.opensips.org&gt;&gt;</a><br>Subject:&nbsp;<span style="color:black"> Re: [OpenSIPS-Users] CDRtool <br></span></div><br> <blockquote type="cite" class="clean_bq"><span><div><div></div><div>



<title></title>


<div dir="ltr">This code in rating.php...</div>
<div class="gmail_extra"><br>
<div class="gmail_quote">2014-09-29 22:18 GMT+06:00 Pavel Eremin
<span dir="ltr">&lt;<a href="mailto:eremina.net@gmail.com" target="_blank">eremina.net@gmail.com</a>&gt;</span>:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div dir="ltr">Hi, All! Let's dance with CDRTool
<div><br></div>
<div>I am trying to use it on heavy load system and get
stack.</div>
<div><br></div>
<div>Why in this code author match canonical number with string
started by 0?(in hard way) Because of this line all calls are
postpaid...:(</div>
<div><br></div>
<div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <b>if
(!preg_match("/^0[9-0]{1,}@/",$CDR-&gt;CanonicalURINormalized))</b>
{</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
$log=sprintf ("MaxSessionTime=unlimited Type=prepaid CallId=%s
BillingParty=%s
DestId=None",$NetFields['callid'],$CDR-&gt;BillingPartyId);</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
syslog(LOG_NOTICE, $log);</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
$this-&gt;logRuntime();</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
$ret="none"."\n"."type=prepaid";</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return
$ret;</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; } else {</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if
(!$CDR-&gt;DestinationId) {</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; $log = sprintf ("error: cannot figure out the destination id
for %s",$CDR-&gt;CanonicalURI);</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; $this-&gt;logRuntime();</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; syslog(LOG_NOTICE, $log);</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; $ret=$log."\n"."type=prepaid";</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
&nbsp; return $ret;</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
}</div>
<div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</div>
</div>
<div><br></div>
</div>
</blockquote>
</div>
<br></div>


_______________________________________________
<br>Users mailing list
<br>Users@lists.opensips.org
<br>http://lists.opensips.org/cgi-bin/mailman/listinfo/users
<br></div></div></span></blockquote></body></html>