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 ushac...@gmail.com wrote: Hi, Anyone got this message Can't initialize shared memory ?

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,

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

Re: [SR-Users] planning v3.1.5

2011-09-14 Thread Daniel-Constantine Mierla
Hello, Ok, I will look over it. Cheers, Daniel On Sep 14, 2011, at 6:37 AM, Spencer Thomason spen...@5ninesolutions.com 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:

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 o...@edvina.net 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()

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 i...@aliax.net wrote: 2011/6/16 Daniel-Constantin Mierla mico...@gmail.com: 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

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 i...@aliax.net wrote: 2011/6/13 Daniel-Constantin Mierla mico...@gmail.com: 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

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 eugen.d...@pu-pm.univ-fcomte.fr 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

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 i...@aliax.net wrote: 2011/6/6 David Villasmil david.villasmil.w...@gmail.com: 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