<br><br><div><span class="gmail_quote">On 8/6/07, <b class="gmail_sendername">Fernando Schmitt</b> &lt;<a href="mailto:fernandoschmitt@ig.com.br">fernandoschmitt@ig.com.br</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
Guys,<br><br>Is anybody receiving my messages?</blockquote><div><br>Yes. <br></div><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"> Am I doint something wrong?
</blockquote><div><br>Yes, you&#39;re using such an antiquity that I doubt you&#39;ll find anyone alive to be able to help with it. :-)<br>Is this SER embedded? Otherwise, you can probably use a much better updated version.
<br><br>WL.<br></div><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Fernando Schmitt<br>Network Engineer<br><a href="mailto:fschmitt@globalnova.com.br">
fschmitt@globalnova.com.br</a><br>mobile: 55 51 84226275<br>IM: <a href="mailto:fschmitt@globalnova.com.br">fschmitt@globalnova.com.br</a><br><br>Add me to your address book... Want a signature like this?<br>-----Original Message-----
<br>From: <a href="mailto:serusers-bounces@lists.iptel.org">serusers-bounces@lists.iptel.org</a><br>[mailto:<a href="mailto:serusers-bounces@lists.iptel.org">serusers-bounces@lists.iptel.org</a>] On Behalf Of Fernando Schmitt
<br>Sent: Saturday, August 04, 2007 4:50 AM<br>To: <a href="mailto:serusers@lists.iptel.org">serusers@lists.iptel.org</a><br>Subject: Re: [Serusers] Problem with TM initialialization<br><br>Guys,<br><br>It's stange, because I guess this module doesn't depend on anyone else. Am I
<br>wrong? I'm trying to run it in a i686 kernel. May this be the problem?<br><br><br>version: ser 0.8.11-r1 (i386/linux)<br>flags: STATS:Off, USE_IPV6, USE_TCP, DISABLE_NAGLE, DNS_IP_HACK, SHM_MEM,<br>SHM_MMAP, PKG_MALLOC, F_MALLOC, FAST_LOCK-ADAPTIVE_WAIT
<br>ADAPTIVE_WAIT_LOOPS=1024, MAX_RECV_BUFFER_SIZE 262144, MAX_LISTEN 16,<br>MAX_URI_SIZE 1024, BUF_SIZE 65535<br>@(#) $Id: main.c,v 1.1 2006/11/22 15:56:27 malmeida Exp $<br>main.c compiled on 06:45:02 Aug 3 2007 with gcc-3.3
 3.3<br><br><br>nocserver:/tools/ciscoenvcontrol# uname -a<br>Linux nocserver 2.6.15-23-686 #1 SMP PREEMPT Tue May 23 14:03:07 UTC 2006<br>i686 GNU/Linux<br><br><br>The ser.cfg file is the default, as you can see bellow:<br>
<br><br># ----------- global configuration parameters ------------------------<br><br>debug=10 # debug level (cmd line: -dddddddddd)<br>fork=no<br>log_stderror=yes<br><br>check_via=no # (cmd. line: -v)<br>dns=no # (cmd. line: -r)
<br>rev_dns=no # (cmd. line: -R)<br>port=5060<br>children=4<br>fifo=&quot;/tmp/ser_fifo&quot;<br>listen=<a href="http://200.231.193.7">200.231.193.7</a><br># ------------------ module loading ----------------------------------
<br><br># Uncomment this if you want to use SQL database<br>#loadmodule &quot;/usr/local/lib/ser/modules/mysql.so&quot;<br><br>loadmodule &quot;/usr/local/lib/ser/modules/sl.so&quot;<br>loadmodule &quot;/usr/local/lib/ser/modules/tm.so&quot;
<br>loadmodule &quot;/usr/local/lib/ser/modules/rr.so&quot;<br>loadmodule &quot;/usr/local/lib/ser/modules/maxfwd.so&quot;<br>loadmodule &quot;/usr/local/lib/ser/modules/usrloc.so&quot;<br>loadmodule &quot;/usr/local/lib/ser/modules/registrar.so&quot;
<br>loadmodule &quot;/usr/local/lib/ser/modules/textops.so&quot;<br><br># Uncomment this if you want digest authentication<br># mysql.so must be loaded !<br>#loadmodule &quot;/usr/local/lib/ser/modules/auth.so&quot;<br>#loadmodule &quot;/usr/local/lib/ser/modules/auth_db.so&quot;
<br><br># ----------------- setting module-specific parameters ---------------<br><br># -- usrloc params --<br><br>modparam(&quot;usrloc&quot;, &quot;db_mode&quot;, 0)<br># -- rr params --<br># add value to ;lr param to make some broken UAs happy
<br>modparam(&quot;rr&quot;, &quot;enable_full_lr&quot;, 1)<br><br># ------------------------- request routing logic -------------------<br><br># main routing logic<br><br>route{<br><br> # initial sanity checks -- messages with
<br> # max_forwards==0, or excessively long requests<br> if (!mf_process_maxfwd_header(&quot;10&quot;)) {<br> sl_send_reply(&quot;483&quot;,&quot;Too Many Hops&quot;);<br> break;<br> };<br> if (len_gt( max_len )) {<br> sl_send_reply(&quot;513&quot;, &quot;Message too big&quot;);
<br> break;<br> };<br><br> # we record-route all messages -- to make sure that<br> # subsequent messages will go through our proxy; that&#39;s<br> # particularly good if upstream and downstream entities<br> # use different transport protocol
<br> if (!method==&quot;REGISTER&quot;) record_route();<br><br> # subsequent messages withing a dialog should take the<br> # path determined by record-routing<br> if (loose_route()) {<br> # mark routing logic in request<br>
 append_hf(&quot;P-hint: rr-enforced\r\n&quot;);<br> route(1);<br> break;<br> };<br><br> if (!uri==myself) {<br> # mark routing logic in request<br> append_hf(&quot;P-hint: outbound\r\n&quot;);<br> route(1);<br> break;<br>
 };<br> # if the request is for other domain use UsrLoc<br> # (in case, it does not work, use the following command<br> # with proper names and addresses in it)<br> if (uri==myself) {<br><br> if (method==&quot;REGISTER&quot;) {
<br><br># Uncomment this if you want to use digest authentication<br># if (!www_authorize(&quot;<a href="http://iptel.org">iptel.org</a>&quot;, &quot;subscriber&quot;)) {<br># www_challenge(&quot;<a href="http://iptel.org">
iptel.org</a>&quot;, &quot;0&quot;);<br># break;<br># };<br><br> save(&quot;location&quot;);<br> break;<br> };<br><br> lookup(&quot;aliases&quot;);<br> if (!uri==myself) {<br> append_hf(&quot;P-hint: outbound alias\r\n&quot;);
<br> route(1);<br> break;<br> };<br><br> # native SIP destinations are handled using our USRLOC DB<br> if (!lookup(&quot;location&quot;)) {<br> sl_send_reply(&quot;404&quot;, &quot;Not Found&quot;);<br> break;<br> };<br> };
<br> append_hf(&quot;P-hint: usrloc applied\r\n&quot;);<br> route(1);<br>}<br><br>route[1]<br>{<br> # send it out now; use stateful forwarding as it works reliably<br> # even for UDP2TCP<br> if (!t_relay()) {<br> sl_reply_error();
<br> };<br>}<br><br><br>Thanks in advance!<br>Fernando<br>________________________________________<br>From: <a href="mailto:serusers-bounces@lists.iptel.org">serusers-bounces@lists.iptel.org</a><br>[mailto:<a href="mailto:serusers-bounces@lists.iptel.org">
serusers-bounces@lists.iptel.org</a>] On Behalf Of Fernando Schmitt<br>Sent: Friday, August 03, 2007 9:17 PM<br>To: <a href="mailto:serusers@lists.iptel.org">serusers@lists.iptel.org</a><br>Subject: [Serusers] Problem with TM initialialization
<br><br>Guys,<br><br>I'm receiving the following output when running ser:<br><br>0(5705) Aug 03 06:58:26 DEBUG: register_fifo_cmd: new command (sl_stats)<br>registered<br>0(5705) Aug 03 06:58:26 DEBUG: MD5 calculated:<br>
103d8e7e9fc1a3538c1143a96b22bab4<br>0(5705) Aug 03 06:58:26 DEBUG: init_mod: tm<br>0(5705) Aug 03 06:58:26 TM - initializing...<br>0(5705) Aug 03 06:58:26 Call-ID initialization: &#39;79dff3eb&#39;<br>0(5705) Aug 03 06:58:26 DEBUG: register_fifo_cmd: new command (t_uac_dlg)
<br>registered<br>0(5705) Aug 03 06:58:26 DEBUG: register_fifo_cmd: new command (t_hash)<br>registered<br>0(5705) Aug 03 06:58:26 DEBUG: lock_initialize: lock initialization started<br>0(5705) Aug 03 06:58:26 init_mod(): Error while initializing module tm
<br>ERROR: error while initializing modules<br><br>Do you know why?<br><br>Thanks!<br><br>_______________________________________________<br>Serusers mailing list<br><a href="mailto:Serusers@lists.iptel.org">Serusers@lists.iptel.org
</a><br><a href="http://lists.iptel.org/mailman/listinfo/serusers">http://lists.iptel.org/mailman/listinfo/serusers</a><br><br><br>_______________________________________________<br>Serusers mailing list<br><a href="mailto:Serusers@lists.iptel.org">
Serusers@lists.iptel.org</a><br><a href="http://lists.iptel.org/mailman/listinfo/serusers">http://lists.iptel.org/mailman/listinfo/serusers</a><br></blockquote></div><br><br clear="all"><br>-- <br>&quot;C is a language that combines all the elegance and power of assembly language with all the readability and maintainability of assembly language.&quot;