Re: [SR-Users] Can't initialize shared memory

2012-07-23 Thread Daniel-Constantine Mierla
Hello, Set debug=4 in config file and look over detailed log messages, maybe you get proper hint. If not, send them here so we can analyze them. Cheers, Daniel On Jul 22, 2012, at 4:09 PM, Uri Shacked wrote: > Hi, > > Anyone got this message " Can't initialize shared memory" ? > > When i

Re: [SR-Users] msilo is failing to in db connection...

2012-03-06 Thread Daniel-Constantine Mierla
fwd to the list - reply all failed in first place ... > Hello, > > the module connects in mod init to check the table version, otherwise it does > not do any message storage related operations with the database. It should > work fine at runtime even if mod init does not connect to db. > > B

Re: [SR-Users] Kamailio 3.2 compile error on Solaris 10

2011-10-20 Thread Daniel-Constantine Mierla
Hello, This looks like an include order issue, due to the fact xmlrpc.c needs to define some flags for strptime function. Can you try to move #include "../../sr_module.h" Before the line #define _XOPEN_SOURCE 4 Then recompile the module. Cheers, Daniel On Oct 21, 2011, at 4:23 AM, Nathani

Re: [SR-Users] Logmessage when Dispatcher-Module sets a dispatcher to probing

2011-09-29 Thread Daniel-Constantine Mierla
Hello, Backports to stable branches must be related to fixing issues in existing features and improvement of documentation, no backport of new features. Major releases are quite often, so people don't have to wait too long for the new features. Right now the next one is just around the corner,

Re: [SR-Users] Logmessage when Dispatcher-Module sets a dispatcher to probing

2011-09-29 Thread Daniel-Constantine Mierla
Hello, In 3.1 you can use main onreply_route which is executed for all replies received from network. There you can do a filter on code, method and from header - the last can be customized via dispatcher module parameter. Cheers, Daniel On Sep 29, 2011, at 11:23 AM, "Timo Klecker" wrote: > H

Re: [SR-Users] parse errors in rr-callback of path module

2011-09-13 Thread Daniel-Constantine Mierla
Hello, Seems like the rr params value is not set properly. I looked in rr module and such case can happen indeed, but for the case when uri in rr does not match myself. Is this also in your case? I wonder anyhow why the callbacks are executed in route header uri is not local address... I will

Re: [SR-Users] planning v3.1.5

2011-09-13 Thread Daniel-Constantine Mierla
Hello, Ok, I will look over it. Cheers, Daniel On Sep 14, 2011, at 6:37 AM, Spencer Thomason wrote: > Hi Daniel, > Would it be possible to backport the patch from trunk to fix via branch value > in ack to 200 ok. > > The specific commit is: > ebb3b085c15b398192cd8e242d46914252278448 > > >

Re: [SR-Users] Kamailio presence server problem with PostgreSQL

2011-07-20 Thread Daniel-Constantine Mierla
Hello, Thanks for troubleshooting further. What intrigues me is that the error message from syslog is printed from store result function, which is used after doing a select query. So something else might have to be reviewed as well. Anyhow, missing sender value should be checked, since it is a

Re: [SR-Users] [sr-dev] new module: async - asynchronous SIP request processing in cfg

2011-06-27 Thread Daniel-Constantine Mierla
On Jun 27, 2011, at 4:11 PM, Olle E. Johansson wrote: > > 27 jun 2011 kl. 10.31 skrev Daniel-Constantin Mierla: > >> Hello, >> >> a new module is now in GIT master branch, named async. >> >> Its purpose is to provide asynchronous SIP request processing using >> t_suspend()/t_continue() mec

Re: [SR-Users] How to check a bit (1/0) of a pseudo-variable?

2011-06-16 Thread Daniel-Constantine Mierla
On Jun 16, 2011, at 2:03 PM, Iñaki Baz Castillo wrote: > 2011/6/16 Daniel-Constantin Mierla : >> that function is probably for ser-like AVPs. >> >> back to your original need, you can use directly if conditions like: >> >> if($var(x) & 2) { ... } >> >> will be true if the second bit is set.

Re: [SR-Users] NAPTR priorities doesn't seem to work properly

2011-06-13 Thread Daniel-Constantine Mierla
On Jun 13, 2011, at 2:48 PM, Iñaki Baz Castillo wrote: > 2011/6/13 Daniel-Constantin Mierla : >> I saw Andrei jumped in and added case insensitive comparison of naptr flags >> -- just to conclude this discussion, is it working on now? > > Hi Daniel, I've tested it right *now* :) > Yes, it work

Re: [SR-Users] Meaning of empty body in NOTIFY

2011-06-10 Thread Daniel-Constantine Mierla
On Jun 10, 2011, at 12:27 PM, Eugen Dedu wrote: > On 10/06/11 12:18, Daniel-Constantin Mierla wrote: >> Hello, >> >> On 6/10/11 12:04 PM, Eugen Dedu wrote: >>> Thank you very much for your answer. >>> >>> Do you confirm that for kamailio, when a user has not been online >>> since a long time

Re: [SR-Users] Using =~ to get the group identifier with longest match

2011-06-06 Thread Daniel-Constantine Mierla
On Jun 6, 2011, at 2:52 PM, Iñaki Baz Castillo wrote: > 2011/6/6 David Villasmil : >> I connected to mysql and ran something like: >> select * from routes where '$rU' like concat(areacode,'%') order by >> len(areacode) desc limit 1; > > Hi David, that would work indeed, but I prefer not to sat