Re: [SR-Users] Centos, kamailio 4.4 and jansson module load issue.

2016-09-01 Thread Daniel-Constantin Mierla
Hello, do you have the jansson devel library installed? Cheers, Daniel On 30/08/16 22:22, Jonathan Hunter wrote: > Hi Alex, > > Sure; > > ldd /usr/local/kamailio-4.4/lib64/kamailio/modules/jansson.so > linux-vdso.so.1 => (0x7fffa3d0d000) > libc.so.6 => /lib64/libc.so.6 (0x

Re: [SR-Users] Htable keys and key::size inconsistencies

2016-09-01 Thread Daniel-Constantin Mierla
Hello, the storage in hash table is not an array. Only loading at the beginning with array flag will set the proper size key. Afterwards, if you change the keys, the size is not updated unless you do it manually. Maybe you can provide more details about what you want to achieve and we can provi

Re: [SR-Users] Kamailio Errors that I see in the system logs

2016-09-01 Thread Daniel-Constantin Mierla
Hello, it looks like you didn't install the siremis database extensions during installation wizard -- there are new db tables and store procedures added in that step. Cheers, Daniel On 27/08/16 00:41, Kevin Greene wrote: > Hi: > > Looking for help in this logging event. > Aug 26 22:34:17 sipserv

Re: [SR-Users] kamailio Bigning

2016-09-01 Thread Daniel-Constantin Mierla
Hello, On 26/08/16 11:28, Gaurav Bmotra wrote: > hi i m new with kamailio > so ple help me what i need to next > i have install kamailio in centos 6.7 and also testing SIP to SIP call > which is working > > but now i want to do some practice on routing (in kamailio.cnfg) so > tell me what are

Re: [SR-Users] Domain limits and domain.reload

2016-09-01 Thread Daniel-Constantin Mierla
Hello, On 25/08/16 21:06, Bruno Emer wrote: > Hello all. > > I am currently working in a company that built an online platform that > allows companies talk to their customer using different medias, such > as video, voice and chat. To this, we are using Kamailio to provide > SIP services such as W

Re: [SR-Users] Rate limiting

2016-09-01 Thread Daniel-Constantin Mierla
Hello, the pipelimit aims to be more dynamic, while dropping the queues concepts of ratelimit, given those can be done with IF conditions inside kamailio.cfg. In ratelimit, the pipes are defined as parameters, with some limits in the number of pipes as well as constrained to integer ids for pipes

Re: [SR-Users] 4.4 topos ignoring Record-Route?

2016-09-01 Thread Daniel-Constantin Mierla
On 31/08/16 15:56, Daniel Tryba wrote: >> I'll try to test all call scenarios tomorrow. >> >> Thanks for the quick fix. > [...] > > BTW syslog is getting spammed with > ERROR: topos [tps_storage.c:874]: tps_storage_load_dialog(): no dlg uuid > provided > these are related to locally generated OP

Re: [SR-Users] Centos, kamailio 4.4 and jansson module load issue.

2016-09-01 Thread Jonathan Hunter
Hi Daniel, I now have the problem fixed, but had a few issues. Initially jansson module didnt load correctly due to this; No package 'jansson' foundPackage jansson was not found in the pkg-config search path.Perhaps you should add the directory containing `jansson.pc'to the PKG_CONFIG_PATH enviro

Re: [SR-Users] Centos, kamailio 4.4 and jansson module load issue.

2016-09-01 Thread Daniel-Constantin Mierla
Hello, ahh, I missed you installed jansson library from sources, which I don't know if it deploys the resource file for pkg-config. That is done when installed from package. I guess that the Makefile needs to be updated to test if 'pkg-config --exists jansson' is try instead of just checking for

Re: [SR-Users] 4.4 topos ignoring Record-Route?

2016-09-01 Thread Daniel-Constantin Mierla
On 31/08/16 15:57, Daniel Tryba wrote: > On Wed, Aug 31, 2016 at 03:56:10PM +0200, Daniel Tryba wrote: >> Attached a pcap showing this problem (the initial INVITE to the callee >> is missing for some reason (fragmented?)) and the topos related >> debugging from the timeperiod. > How hard is it to

[SR-Users] presence modules not send NOTIFY events

2016-09-01 Thread Yuriy Gorlichenko
Hi. I trying to implement full presence server I set config like this (part of it) #!define FLT_DLG 9#!define FLT_DLGINFO 10 modparam("dialog", "timeout_avp", "$avp(i:10)") modparam("dialog", "dlg_flag", 4) modparam("dialog", "initial_cbs_inscript", 1) modparam("dialog", "profiles_with_value",

[SR-Users] Kamailio with Dispacher

2016-09-01 Thread Rodrigo Moreira
Hello, I would like to clarify a question. Can you help me? I'm deploying a solution based on Kamailio, but I need incorporate the load balancer funcionality in the environment. See the cenario: I have five VMs. PCSCF, ICSCF, SCSCF, HSS, DNS. Each VM runs the especific funcionality of the IMS.

[SR-Users] issue with memcached module

2016-09-01 Thread jay binks
if I use the memached module in kamailio to set STRING data in memcache, this is not readable from PHP. This is because kamailio uses the "val_flag" to distinguish the type of data ( int or string ). There does not appear to be a standard for how data type is indicated ( in fact the protocol doc

Re: [SR-Users] issue with memcached module

2016-09-01 Thread Dragos Oancea
Hi Jay, Have you tried this ? modparam("memcached", "stringify", 1) http://www.kamailio.org/docs/modules/4.4.x/modules/memcached.html#memcached.p.stringify Cheers, Dragos On 02/09/2016 03:45, jay binks wrote: > if I use the memached module in kamailio to set STRING data in memcache, > this is no