Thanks for the additional explanation.<br><br><div class="gmail_quote">On Thu, Jul 25, 2013 at 11:29 AM, Muhammad Shahzad <span dir="ltr"><<a href="mailto:shaheryarkh@gmail.com" target="_blank">shaheryarkh@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div>There are many circumstances, for example,<br><br></div>1. You are using loadbalancer / dispatcher module, which send SIP keep alive requests (e.g. OPTIONS or INFO message) to destination to determine that are still available.<br>
</div>2. You are using media proxy / rtpproxy with media timeouts enabled, so if media proxy / rtpproxy does not receives rtp and timeout occurs, it triggers a BYE requests to end the call. Which you many want to track in local_route to do accounting etc.<br>
</div>3. You are using dialog module with "B" flag enabled in create_dialog method, which will result in BYE request to end points when dialog timeouts (same way as above).<br><div><div>4. You are using B2BUA or topo-hiding setup, which will result in all SIP request duplicated but with somewhat different headers / parameters to send to destination. All those messages will appear in local route where you can do their accounting etc.<br>
<br></div><div>OpenSIPS does not generates any reply on its own, unless in special circumstances, e.g. <br><br>1. It sends 100 Trying when you do t_relay, However, you can force opensips NOT to send this reply automatically by specifying it a parameter to this method.<br>
</div><div>2. It sends 408 upon T2 timer timeout for destination. You can track it in reply_route to do whatever you want in that situation.<br><br></div><div>You can generate your own replies overriding the reply that is actually received from destination in reply_route, or even from route block if you do not want to (or you can not send to) an incoming request to a destination at all.<br>
</div><div><br></div><div>Have a look at tutorials for more information,<br><br><a href="http://www.opensips.org/Documentation/Tutorials" target="_blank">http://www.opensips.org/Documentation/Tutorials</a><br></div><div>
<br></div><div>Thank you.<br>
</div><div><div><div><br><div><div><br></div></div></div></div></div></div></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Jul 25, 2013 at 6:08 PM, Jason Caulfield <span dir="ltr"><<a href="mailto:opensips@jcpd.biz" target="_blank">opensips@jcpd.biz</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Muhammad, <br><br>Thanks for the reply.<br><br>I guess I don't understand under which circumstances the TM module would send out a request message, presumably an INVITE.<br>
<br>Can you please add clarification.<br><br>
Thanks,<br>Jason<div><div><br><br><div class="gmail_quote">On Wed, Jul 24, 2013 at 6:55 PM, Muhammad Shahzad <span dir="ltr"><<a href="mailto:shaheryarkh@gmail.com" target="_blank">shaheryarkh@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>Local route is invoked by opensips when a REQUEST is generated by TM module internally, NOT the replies. See its description for details,<br>
<br><a href="http://www.opensips.org/Documentation/Script-Routes-1-9#toc6" target="_blank">http://www.opensips.org/Documentation/Script-Routes-1-9#toc6</a><br>
<br></div>Thank you.<br><br><br></div><div class="gmail_extra"><br><br><div class="gmail_quote"><div><div>On Wed, Jul 24, 2013 at 11:42 PM, Jason Caulfield <span dir="ltr"><<a href="mailto:opensips@jcpd.biz" target="_blank">opensips@jcpd.biz</a>></span> wrote:<br>
</div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div>Users,<br><br>I am just getting started with opensips. (version 1.7 from CentOS 6 epel repo)<br>
<br>Can you please help me understand why in my code (see below) local_route is not invoked.<br>
<br>I would expect that local_route would be invoked when a "100 Trying" is issued, but it is not.<br>
<br>Below is the config, log out, and network output.<br><br>I am testing it with sipp.<br><br><br>Config:<br><br>####### Global Parameters #########<br>debug=0<br>log_stderror=no<br>log_facility=LOG_LOCAL0<br>fork=yes<br>
children=12<br>log_name="TEST"<br>disable_tcp=yes<br>port=5060<br>###################################<br><br>####### Modules Section ###########<br>mpath="/usr/lib/opensips/modules"<br><br>loadmodule "tm.so"<br>
loadmodule "textops.so"<br>loadmodule "exec.so"<br><br>modparam("tm" , "onreply_avp_mode", 1)<br>modparam("tm" , "fr_timer", 2) # Vendor timeout<br>modparam("tm" , "fr_inv_timer", 2)<br>
modparam("tm" , "enable_stats", 0)<br>modparam("tm" , "via1_matching", 0)<br>modparam("tm" , "T1_timer", 500) # Retransmit interval<br>modparam("tm" , "T2_timer", 1000) # Retransmit total duration<br>
###################################<br><br>####### Routing Logic #############<br>route {<br> xlog("ROUTE");<br> seturi("<a href="http://sip:5555555555@10.0.1.27:9003" target="_blank">sip:5555555555@10.0.1.27:9003</a>");<br>
t_relay();<br>}<br><br>onreply_route {<br> xlog("ONREPLY");<br>}<br>error_route {<br> xlog("ERROR");<br>}<br><br>local_route {<br> xlog("LOCAL");<br>}<br>###################################<br>
<br><br>Log:<br><br>Jul 25 05:34:32 rmps-b TEST[12856]: ROUTE<br>Jul 25 05:34:32 rmps-b TEST[12855]: ONREPLY<br>Jul 25 05:34:32 rmps-b TEST[12857]: ONREPLY<br>Jul 25 05:34:32 rmps-b TEST[12858]: ROUTE<br>Jul 25 05:34:42 rmps-b TEST[12860]: ROUTE<br>
Jul 25 05:34:42 rmps-b TEST[12861]: ONREPLY<br><br><br>Network:<br><br>#<br>U <a href="http://10.0.1.27:5060" target="_blank">10.0.1.27:5060</a> -> <a href="http://10.0.1.147:5060" target="_blank">10.0.1.147:5060</a><br>
INVITE <a href="http://sip:5555555555@10.0.1.147:5060" target="_blank">sip:5555555555@10.0.1.147:5060</a> SIP/2.0.<br>
Via: SIP/2.0/UDP 10.0.1.27:5060;branch=z9hG4bK-10199-4-0.<br>From: sipp <<a href="http://sip:9123456789@10.0.1.27:5060" target="_blank">sip:9123456789@10.0.1.27:5060</a>>;tag=10199SIPpTag004.<br>To: sut <<a href="http://18574921119@10.0.1.147:5060" target="_blank">18574921119@10.0.1.147:5060</a>>.<br>
Call-ID: <a href="mailto:4-10199@10.0.1.27" target="_blank">4-10199@10.0.1.27</a>.<br>CSeq: 1 INVITE.<br>Contact: <a href="http://sip:sipp@10.0.1.27:5060" target="_blank">sip:sipp@10.0.1.27:5060</a>.<br>Max-Forwards: 70.<br>
Subject: Performance Test.<br>
Content-Type: application/sdp.<br>Content-Length: 129.<br>.<br>v=0.<br>o=user1 53655765 2353687637 IN IP4 10.0.1.27.<br>s=-.<br>c=IN IP4 10.0.1.27.<br>t=0 0.<br>m=audio 6000 RTP/AVP 0.<br>a=rtpmap:0 PCMU/8000.<br><br>#<br>
U <a href="http://10.0.1.147:5060" target="_blank">10.0.1.147:5060</a> -> <a href="http://10.0.1.27:5060" target="_blank">10.0.1.27:5060</a><br>SIP/2.0 100 Giving a try.<br>Via: SIP/2.0/UDP 10.0.1.27:5060;branch=z9hG4bK-10199-4-0.<br>
From: sipp <<a href="http://sip:5555555555@10.0.1.27:5060" target="_blank">sip:5555555555@10.0.1.27:5060</a>>;tag=10199SIPpTag004.<br>
To: sut <<a href="http://5555555555@10.0.1.147:5060" target="_blank">5555555555@10.0.1.147:5060</a>>.<br>Call-ID: <a href="mailto:4-10199@10.0.1.27" target="_blank">4-10199@10.0.1.27</a>.<br>CSeq: 1 INVITE.<br>Server: OpenSIPS (1.7.2-tls (i386/linux)).<br>
Content-Length: 0.<br>.<br><br>#<br>U <a href="http://10.0.1.147:5060" target="_blank">10.0.1.147:5060</a> -> <a href="http://10.0.1.27:9003" target="_blank">10.0.1.27:9003</a><br>INVITE <a href="http://sip:5555555555@10.0.1.27:9003" target="_blank">sip:5555555555@10.0.1.27:9003</a> SIP/2.0.<br>
Via: SIP/2.0/UDP 10.0.1.147;branch=z9hG4bK580f.8ddd3891.0.<br>Via: SIP/2.0/UDP 10.0.1.27:5060;branch=z9hG4bK-10199-4-0.<br>From: sipp <<a href="http://sip:5555555555@10.0.1.27:5060" target="_blank">sip:5555555555@10.0.1.27:5060</a>>;tag=10199SIPpTag004.<br>
To: sut <<a href="http://5555555555@10.0.1.147:5060" target="_blank">5555555555@10.0.1.147:5060</a>>.<br>Call-ID: <a href="mailto:4-10199@10.0.1.27" target="_blank">4-10199@10.0.1.27</a>.<br>CSeq: 1 INVITE.<br>Contact: <a href="http://sip:sipp@10.0.1.27:5060" target="_blank">sip:sipp@10.0.1.27:5060</a>.<br>
Max-Forwards: 70.<br>Subject: Performance Test.<br>Content-Type: application/sdp.<br>Content-Length: 129.<br>.<br>v=0.<br>o=user1 53655765 2353687637 IN IP4 10.0.1.27.<br>s=-.<br>c=IN IP4 10.0.1.27.<br>t=0 0.<br>m=audio 6000 RTP/AVP 0.<br>
a=rtpmap:0 PCMU/8000.<br><br>#<br>U <a href="http://10.0.1.27:9003" target="_blank">10.0.1.27:9003</a> -> <a href="http://10.0.1.147:5060" target="_blank">10.0.1.147:5060</a><br>SIP/2.0 180 Ringing.<br>Via: SIP/2.0/UDP 10.0.1.147;branch=z9hG4bK580f.8ddd3891.0, SIP/2.0/UDP 10.0.1.27:5060;branch=z9hG4bK-10199-4-0.<br>
From: sipp <<a href="http://sip:5555555555@10.0.1.27:5060" target="_blank">sip:5555555555@10.0.1.27:5060</a>>;tag=10199SIPpTag004.<br>To: sut <<a href="http://5555555555@10.0.1.147:5060" target="_blank">5555555555@10.0.1.147:5060</a>>;tag=10195SIPpTag014.<br>
Call-ID: <a href="mailto:4-10199@10.0.1.27" target="_blank">4-10199@10.0.1.27</a>.<br>CSeq: 1 INVITE.<br>Contact: <sip:10.0.1.27:9003;transport=UDP>.<br>Content-Length: 0.<br>.<br><br>#<br>U <a href="http://10.0.1.27:9003" target="_blank">10.0.1.27:9003</a> -> <a href="http://10.0.1.147:5060" target="_blank">10.0.1.147:5060</a><br>
SIP/2.0 200 OK.<br>Via: SIP/2.0/UDP 10.0.1.147;branch=z9hG4bK580f.8ddd3891.0, SIP/2.0/UDP 10.0.1.27:5060;branch=z9hG4bK-10199-4-0.<br>From: sipp <<a href="http://sip:5555555555@10.0.1.27:5060" target="_blank">sip:5555555555@10.0.1.27:5060</a>>;tag=10199SIPpTag004.<br>
To: sut <<a href="http://5555555555@10.0.1.147:5060" target="_blank">5555555555@10.0.1.147:5060</a>>;tag=10195SIPpTag014.<br>Call-ID: <a href="mailto:4-10199@10.0.1.27" target="_blank">4-10199@10.0.1.27</a>.<br>CSeq: 1 INVITE.<br>
Contact: <sip:10.0.1.27:9003;transport=UDP>.<br>
Content-Type: application/sdp.<br>Content-Length: 129.<br>.<br>v=0.<br>o=user1 53655765 2353687637 IN IP4 10.0.1.27.<br>s=-.<br>c=IN IP4 10.0.1.27.<br>t=0 0.<br>m=audio 6001 RTP/AVP 0.<br>a=rtpmap:0 PCMU/8000.<br><br>#<br>
U <a href="http://10.0.1.147:5060" target="_blank">10.0.1.147:5060</a> -> <a href="http://10.0.1.27:5060" target="_blank">10.0.1.27:5060</a><br>SIP/2.0 180 Ringing.<br>Via: SIP/2.0/UDP 10.0.1.27:5060;branch=z9hG4bK-10199-4-0.<br>
From: sipp <<a href="http://sip:5555555555@10.0.1.27:5060" target="_blank">sip:5555555555@10.0.1.27:5060</a>>;tag=10199SIPpTag004.<br>
To: sut <<a href="http://5555555555@10.0.1.147:5060" target="_blank">5555555555@10.0.1.147:5060</a>>;tag=10195SIPpTag014.<br>Call-ID: <a href="mailto:4-10199@10.0.1.27" target="_blank">4-10199@10.0.1.27</a>.<br>CSeq: 1 INVITE.<br>
Contact: <sip:10.0.1.27:9003;transport=UDP>.<br>
Content-Length: 0.<br>.<br><br>#<br>U <a href="http://10.0.1.147:5060" target="_blank">10.0.1.147:5060</a> -> <a href="http://10.0.1.27:5060" target="_blank">10.0.1.27:5060</a><br>SIP/2.0 200 OK.<br>Via: SIP/2.0/UDP 10.0.1.27:5060;branch=z9hG4bK-10199-4-0.<br>
From: sipp <<a href="http://sip:5555555555@10.0.1.27:5060" target="_blank">sip:5555555555@10.0.1.27:5060</a>>;tag=10199SIPpTag004.<br>To: sut <<a href="http://5555555555@10.0.1.147:5060" target="_blank">5555555555@10.0.1.147:5060</a>>;tag=10195SIPpTag014.<br>
Call-ID: <a href="mailto:4-10199@10.0.1.27" target="_blank">4-10199@10.0.1.27</a>.<br>CSeq: 1 INVITE.<br>Contact: <sip:10.0.1.27:9003;transport=UDP>.<br>Content-Type: application/sdp.<br>Content-Length: 129.<br>.<br>
v=0.<br>o=user1 53655765 2353687637 IN IP4 10.0.1.27.<br>
s=-.<br>c=IN IP4 10.0.1.27.<br>t=0 0.<br>m=audio 6001 RTP/AVP 0.<br>a=rtpmap:0 PCMU/8000.<br><br>#<br>U <a href="http://10.0.1.27:5060" target="_blank">10.0.1.27:5060</a> -> <a href="http://10.0.1.147:5060" target="_blank">10.0.1.147:5060</a><br>
ACK <a href="http://sip:5555555555@10.0.1.147:5060" target="_blank">sip:5555555555@10.0.1.147:5060</a> SIP/2.0.<br>
Via: SIP/2.0/UDP 10.0.1.27:5060;branch=z9hG4bK-10199-4-5.<br>From: sipp <<a href="http://sip:5555555555@10.0.1.27:5060" target="_blank">sip:5555555555@10.0.1.27:5060</a>>;tag=10199SIPpTag004.<br>To: sut <<a href="http://5555555555@10.0.1.147:5060" target="_blank">5555555555@10.0.1.147:5060</a>>.<br>
Call-ID: <a href="mailto:4-10199@10.0.1.27" target="_blank">4-10199@10.0.1.27</a>.<br>CSeq: 1 ACK.<br>Contact: <a href="http://sip:sipp@10.0.1.27:5060" target="_blank">sip:sipp@10.0.1.27:5060</a>.<br>Max-Forwards: 70.<br>
Subject: Performance Test.<br>Content-Length: 0.<br>
.<br><br>#<br>U <a href="http://10.0.1.147:5060" target="_blank">10.0.1.147:5060</a> -> <a href="http://10.0.1.27:9003" target="_blank">10.0.1.27:9003</a><br>ACK <a href="http://sip:5555555555@10.0.1.27:9003" target="_blank">sip:5555555555@10.0.1.27:9003</a> SIP/2.0.<br>
Via: SIP/2.0/UDP 10.0.1.147;branch=z9hG4bK580f.8ddd3891.2.<br>Via: SIP/2.0/UDP 10.0.1.27:5060;branch=z9hG4bK-10199-4-5.<br>From: sipp <<a href="http://sip:5555555555@10.0.1.27:5060" target="_blank">sip:5555555555@10.0.1.27:5060</a>>;tag=10199SIPpTag004.<br>
To: sut <<a href="http://5555555555@10.0.1.147:5060" target="_blank">5555555555@10.0.1.147:5060</a>>.<br>Call-ID: <a href="mailto:4-10199@10.0.1.27" target="_blank">4-10199@10.0.1.27</a>.<br>CSeq: 1 ACK.<br>Contact: <a href="http://sip:sipp@10.0.1.27:5060" target="_blank">sip:sipp@10.0.1.27:5060</a>.<br>
Max-Forwards: 70.<br>Subject: Performance Test.<br>Content-Length: 0.<br>.<br><br>#<br>U <a href="http://10.0.1.27:5060" target="_blank">10.0.1.27:5060</a> -> <a href="http://10.0.1.147:5060" target="_blank">10.0.1.147:5060</a><br>
BYE <a href="http://sip:5555555555@10.0.1.147:5060" target="_blank">sip:5555555555@10.0.1.147:5060</a> SIP/2.0.<br>
Via: SIP/2.0/UDP 10.0.1.27:5060;branch=z9hG4bK-10199-4-7.<br>From: sipp <<a href="http://sip:5555555555@10.0.1.27:5060" target="_blank">sip:5555555555@10.0.1.27:5060</a>>;tag=10199SIPpTag004.<br>To: sut <<a href="http://5555555555@10.0.1.147:5060" target="_blank">5555555555@10.0.1.147:5060</a>>.<br>
Call-ID: <a href="mailto:4-10199@10.0.1.27" target="_blank">4-10199@10.0.1.27</a>.<br>CSeq: 2 BYE.<br>Contact: <a href="http://sip:sipp@10.0.1.27:5060" target="_blank">sip:sipp@10.0.1.27:5060</a>.<br>Max-Forwards: 70.<br>
Subject: Performance Test.<br>Content-Length: 0.<br>
.<br><br>#<br>U <a href="http://10.0.1.147:5060" target="_blank">10.0.1.147:5060</a> -> <a href="http://10.0.1.27:9003" target="_blank">10.0.1.27:9003</a><br>BYE <a href="http://sip:5555555555@10.0.1.27:9003" target="_blank">sip:5555555555@10.0.1.27:9003</a> SIP/2.0.<br>
Via: SIP/2.0/UDP 10.0.1.147;branch=z9hG4bK280f.81db1714.0.<br>Via: SIP/2.0/UDP 10.0.1.27:5060;branch=z9hG4bK-10199-4-7.<br>From: sipp <<a href="http://sip:5555555555@10.0.1.27:5060" target="_blank">sip:5555555555@10.0.1.27:5060</a>>;tag=10199SIPpTag004.<br>
To: sut <<a href="http://5555555555@10.0.1.147:5060" target="_blank">5555555555@10.0.1.147:5060</a>>.<br>Call-ID: <a href="mailto:4-10199@10.0.1.27" target="_blank">4-10199@10.0.1.27</a>.<br>CSeq: 2 BYE.<br>Contact: <a href="http://sip:sipp@10.0.1.27:5060" target="_blank">sip:sipp@10.0.1.27:5060</a>.<br>
Max-Forwards: 70.<br>Subject: Performance Test.<br>Content-Length: 0.<br>.<br><br>#<br>U <a href="http://10.0.1.27:9003" target="_blank">10.0.1.27:9003</a> -> <a href="http://10.0.1.147:5060" target="_blank">10.0.1.147:5060</a><br>
SIP/2.0 200 OK.<br>
Via: SIP/2.0/UDP 10.0.1.147;branch=z9hG4bK280f.81db1714.0, SIP/2.0/UDP 10.0.1.27:5060;branch=z9hG4bK-10199-4-7.<br>From: sipp <<a href="http://sip:5555555555@10.0.1.27:5060" target="_blank">sip:5555555555@10.0.1.27:5060</a>>;tag=10199SIPpTag004.<br>
To: sut <<a href="http://5555555555@10.0.1.147:5060" target="_blank">5555555555@10.0.1.147:5060</a>>.<br>Call-ID: <a href="mailto:4-10199@10.0.1.27" target="_blank">4-10199@10.0.1.27</a>.<br>CSeq: 2 BYE.<br>Contact: <sip:10.0.1.27:9003;transport=UDP>.<br>
Content-Length: 0.<br>.<br><br>#<br>U <a href="http://10.0.1.147:5060" target="_blank">10.0.1.147:5060</a> -> <a href="http://10.0.1.27:5060" target="_blank">10.0.1.27:5060</a><br>SIP/2.0 200 OK.<br>Via: SIP/2.0/UDP 10.0.1.27:5060;branch=z9hG4bK-10199-4-7.<br>
From: sipp <<a href="http://sip:5555555555@10.0.1.27:5060" target="_blank">sip:5555555555@10.0.1.27:5060</a>>;tag=10199SIPpTag004.<br>To: sut <<a href="http://5555555555@10.0.1.147:5060" target="_blank">5555555555@10.0.1.147:5060</a>>.<br>
Call-ID: <a href="mailto:4-10199@10.0.1.27" target="_blank">4-10199@10.0.1.27</a>.<br>
CSeq: 2 BYE.<br>Contact: <sip:10.0.1.27:9003;transport=UDP>.<br>Content-Length: 0.<br><br><br>Thanks,<br>Jason<br>
<br></div></div>_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.opensips.org" target="_blank">Users@lists.opensips.org</a><br>
<a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a><br>
<br></blockquote></div><span><font color="#888888"><br><br clear="all"><br>-- <br><div><span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">Mit freundlichen Grüßen</span></div><span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">Muhammad Shahzad</span><br style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">
<span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">------------------------------</span><span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">-----</span><br style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">
<span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">CISCO Rich Media Communication Specialist (CRMCS)</span><br style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">
<span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">CISCO Certified Network Associate (CCNA)</span><br style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">
<span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">Cell: +49 176 99 83 10 85</span><br style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">
<span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">MSN: </span><a href="mailto:shari_786pk@hotmail.com" style="color:rgb(17,85,204);font-size:13px;font-family:arial,sans-serif" target="_blank">shari_786pk@hotmail.com</a><br style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">
<span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">Email: </span><a href="mailto:shaheryarkh@googlemail.com" style="color:rgb(17,85,204);font-size:13px;font-family:arial,sans-serif" target="_blank">shaheryarkh@googlemail.com</a>
</font></span></div>
<br>_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.opensips.org" target="_blank">Users@lists.opensips.org</a><br>
<a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a><br>
<br></blockquote></div><br>
</div></div><br>_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.opensips.org" target="_blank">Users@lists.opensips.org</a><br>
<a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a><br>
<br></blockquote></div><br><br clear="all"><br>-- <br><div><span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">Mit freundlichen Grüßen</span></div><span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">Muhammad Shahzad</span><br style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">
<span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">------------------------------</span><span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">-----</span><br style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">
<span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">CISCO Rich Media Communication Specialist (CRMCS)</span><br style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">
<span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">CISCO Certified Network Associate (CCNA)</span><br style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">
<span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">Cell: +49 176 99 83 10 85</span><br style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">
<span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">MSN: </span><a href="mailto:shari_786pk@hotmail.com" style="color:rgb(17,85,204);font-size:13px;font-family:arial,sans-serif" target="_blank">shari_786pk@hotmail.com</a><br style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">
<span style="color:rgb(136,136,136);font-size:13px;font-family:arial,sans-serif">Email: </span><a href="mailto:shaheryarkh@googlemail.com" style="color:rgb(17,85,204);font-size:13px;font-family:arial,sans-serif" target="_blank">shaheryarkh@googlemail.com</a>
</div>
</div></div><br>_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.opensips.org">Users@lists.opensips.org</a><br>
<a href="http://lists.opensips.org/cgi-bin/mailman/listinfo/users" target="_blank">http://lists.opensips.org/cgi-bin/mailman/listinfo/users</a><br>
<br></blockquote></div><br>