[sr-dev] Kamailio Updates on VUC 588 - this week on Friday

2016-04-04 Thread Daniel-Constantin Mierla
Hello, The weekly VoIP Users Conference (VUC) #588 moderated by Randy Resnick will host a session for Kamailio Updates. Everyone from community is invited to join and actively participate to discussions. There are many ways to connect, from SIP to classic PSTN dial in as well as listening or watch

Re: [sr-dev] [kamailio/kamailio] sdpops: Parsing of a multipart INVITE body (SDP + an unknown MIME type) (#561)

2016-04-04 Thread Daniel-Constantin Mierla
Thanks for report and troubleshooting further. indeed it looks like the define for valid char check must be extended to isalnum. The function with mime check is quite old, maybe 2001-2003 timeframe... Have you tested with isalnum()? If works fine then I will commit the change and backport. ---

Re: [sr-dev] [kamailio/kamailio] having keep-alive response count before ending the dialog (#438)

2016-04-04 Thread Jayesh Nambiar
Great. That'll be perfect. --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/438#issuecomment-205661512___ sr-dev mailing list sr-dev@lists

Re: [sr-dev] [kamailio/kamailio] QMalloc: TCP Memory Allocation Failures (#562)

2016-04-04 Thread Daniel-Constantin Mierla
Do you have memjoin parameter set to 1? If you test with 4.4, then you can change the memory manager with -x command line parameter, you no longer need to recompile kamailio. --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [sr-dev] [kamailio/kamailio] having keep-alive response count before ending the dialog (#438)

2016-04-04 Thread Daniel-Constantin Mierla
Will get that, too -- was in the plan to reset if there is a response, but forgot about it. --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/438#issuecomment-205658878__

[sr-dev] git:master:6398383a: pv: readme update with pv_evalx()

2016-04-04 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 6398383a9363a0eeff3e9212f75805f52ff24785 URL: https://github.com/kamailio/kamailio/commit/6398383a9363a0eeff3e9212f75805f52ff24785 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2016-04-05T07:31:29+02:00 pv: readme update with

[sr-dev] git:master:0e2f744f: pv: documentation for pv_evalx() function

2016-04-04 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 0e2f744f79d78c9cc33e32544222a53ded3eab47 URL: https://github.com/kamailio/kamailio/commit/0e2f744f79d78c9cc33e32544222a53ded3eab47 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2016-04-05T07:27:15+02:00 pv: documentation for

[sr-dev] git:master:bb772a8a: pv: new function pv_evalx(dst, fmt)

2016-04-04 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: bb772a8a1c3d16febaab521033f42fe2ed0a7203 URL: https://github.com/kamailio/kamailio/commit/bb772a8a1c3d16febaab521033f42fe2ed0a7203 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2016-04-05T07:18:28+02:00 pv: new function pv_ev

[sr-dev] git:master:38548b56: http_client Fix formatting of source code

2016-04-04 Thread Olle E . Johansson
Module: kamailio Branch: master Commit: 38548b561f97ed5c17fbd52fa1514b83768b5057 URL: https://github.com/kamailio/kamailio/commit/38548b561f97ed5c17fbd52fa1514b83768b5057 Author: Olle E. Johansson Committer: Olle E. Johansson Date: 2016-04-04T22:12:42+02:00 http_client Fix formatting of source

Re: [sr-dev] [kamailio/kamailio] sdpops: Parsing of a multipart INVITE body (SDP + an unknown MIME type) (#561)

2016-04-04 Thread foucse
I have taken some time to investigate this issue and the problem is that you use the "isalpha" function in the is_mime_char routine: ```C #define is_mime_char(_c_) \ (isalpha((int)_c_) || (_c_)=='-' || (_c_)=='+' || (_c_)=='.' || (_c_)=='_') ``` But a MIME type can have digits in it (as

[sr-dev] [kamailio/kamailio] QMalloc: TCP Memory Allocation Failures (#562)

2016-04-04 Thread Phil Lavin
Experiencing an issue with QMalloc when Kamailio receives a lot of subscriptions (dialog-info) in a short period of time. The following is reported in logs and the TCP (TLS) connection fails: ```Apr 4 18:06:04 ua-proxy-01 /usr/local/sbin/kamailio[28456]: ERROR: [tcp_main.c:959]: tcpconn_new()

[sr-dev] [kamailio/kamailio] sdpops: Parsing of a multipart INVITE body (SDP + an unknown MIME type) (#561)

2016-04-04 Thread foucse
``` version: kamailio 5.0.0-dev0 (i386/linux) 00f108-dirty flags: STATS: Off, EXTRA_DEBUG, USE_TCP, USE_TLS, USE_SCTP, TLS_HOOKS, USE_RAW_SOCKS, DISABLE_NAGLE, USE_MCAST, DNS_IP_HACK, SHM_MEM, SHM_MMAP, PKG_MALLOC, Q_MALLOC, F_MALLOC, TLSF_MALLOC, DBG_SR_MEMORY, USE_FUTEX, FAST_LOCK-ADAPTIVE_WAI

Re: [sr-dev] RTPengine docs

2016-04-04 Thread Olle E. Johansson
> > I humbly suggest that you create a different result code, like -2, if there > are no RTPengines available. Right now > a -1 indicates a lot of different errors. Found another argument - I would like to send a 503 if the RTP engine fails on a request, but possibly other error codes if someth

Re: [sr-dev] [kamailio/kamailio] having keep-alive response count before ending the dialog (#438)

2016-04-04 Thread Jayesh Nambiar
Hi. Just tested and this helps and works as required. Just to be technically correct, the implementation disconnects the call when kamailio misses the keep-alive response to the number defined in the modparam in the entire call. But to better meet the use-case it should disconnect the call when

[sr-dev] RTPengine docs

2016-04-04 Thread Olle E. Johansson
Hi! I took the liberty of adding result code to rtpengine_offer. It was used in the example, but not stated in the README. When generating a new README a lot of new stuff showed up that wasn’t generated from the XML before. I hope I did not reveal anything secret :-) I humbly suggest that you

[sr-dev] git:master:00da3663: rtpengine Add result code for rtpengine_offer (et al) to README and regenerate README

2016-04-04 Thread Olle E . Johansson
Module: kamailio Branch: master Commit: 00da3663e8fac4239acf4e2d3228b5dd2bd3915a URL: https://github.com/kamailio/kamailio/commit/00da3663e8fac4239acf4e2d3228b5dd2bd3915a Author: Olle E. Johansson Committer: Olle E. Johansson Date: 2016-04-04T12:50:49+02:00 rtpengine Add result code for rtpeng

Re: [sr-dev] [kamailio/kamailio] having keep-alive response count before ending the dialog (#438)

2016-04-04 Thread Jayesh Nambiar
the ka_failed_limit should be a modparam in the dialog module? --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/438#issuecomment-205201517

Re: [sr-dev] [kamailio/kamailio] having keep-alive response count before ending the dialog (#438)

2016-04-04 Thread Daniel-Constantin Mierla
Can you try with master branch? I added the feature with commit e8cd0ebbcc00ef7d5fba4771e9b2c1c5ad1f9a92. --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/issues/438#issuecomment-205201103

Re: [sr-dev] [kamailio/kamailio] Added connection and command timeout parameters to ndb_redis module (#559)

2016-04-04 Thread Daniel-Constantin Mierla
Closed #559. --- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/kamailio/kamailio/pull/559#event-613277655___ sr-dev mailing list sr-dev@lists.sip-router.org http://

Re: [sr-dev] [kamailio/kamailio] Added connection and command timeout parameters to ndb_redis module (#559)

2016-04-04 Thread Daniel-Constantin Mierla
Thanks. Applied the patch manually with commit 8992021f253fc7de38359aa7e51e5d4d6c705c34, because the indentation was done with whitespaces instead of tabs. Also, for next time, format the commit message according with the suggestions from git commit guidelines (see the README.md) for more detai

[sr-dev] git:master:8992021f: ndb_redis: added parameters to control connect and command timeouts

2016-04-04 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 8992021f253fc7de38359aa7e51e5d4d6c705c34 URL: https://github.com/kamailio/kamailio/commit/8992021f253fc7de38359aa7e51e5d4d6c705c34 Author: Morten Isaksen Committer: Daniel-Constantin Mierla Date: 2016-04-04T10:55:36+02:00 ndb_redis: added parameters to c

[sr-dev] git:master:ad2f899c: core: declare function parameter type to get rid of compile warning

2016-04-04 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: ad2f899c1ad75c2b636cb17b6c1c49cb38daab27 URL: https://github.com/kamailio/kamailio/commit/ad2f899c1ad75c2b636cb17b6c1c49cb38daab27 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2016-04-04T10:55:36+02:00 core: declare function

[sr-dev] git:master:7fe35648: ndb_redis: regenerated text readme

2016-04-04 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 7fe3564849152e00de84fe8bf91b14c0c4b7e053 URL: https://github.com/kamailio/kamailio/commit/7fe3564849152e00de84fe8bf91b14c0c4b7e053 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2016-04-04T10:55:36+02:00 ndb_redis: regenerated

[sr-dev] git:master:e8cd0ebb: dialog: option to set the limit for failed keepalive to end the dialog

2016-04-04 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: e8cd0ebbcc00ef7d5fba4771e9b2c1c5ad1f9a92 URL: https://github.com/kamailio/kamailio/commit/e8cd0ebbcc00ef7d5fba4771e9b2c1c5ad1f9a92 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2016-04-04T10:55:36+02:00 dialog: option to set

[sr-dev] git:master:2ea8b132: dialog: counters for keep alive tracking

2016-04-04 Thread Daniel-Constantin Mierla
Module: kamailio Branch: master Commit: 2ea8b132776329ecae7be102a3cb2faa22810f54 URL: https://github.com/kamailio/kamailio/commit/2ea8b132776329ecae7be102a3cb2faa22810f54 Author: Daniel-Constantin Mierla Committer: Daniel-Constantin Mierla Date: 2016-04-04T10:55:36+02:00 dialog: counters for k

[sr-dev] git:master:6bb0babc: http_client Remove function definitions not used

2016-04-04 Thread Olle E . Johansson
Module: kamailio Branch: master Commit: 6bb0babc00d8c0042ae3325583ff8fe5d3f07715 URL: https://github.com/kamailio/kamailio/commit/6bb0babc00d8c0042ae3325583ff8fe5d3f07715 Author: Olle E. Johansson Committer: Olle E. Johansson Date: 2016-04-03T21:33:07+02:00 http_client Remove function definiti