- mohqueue: remove call from queue if caller does not exist
+ modules/nat_traversal: avoid clang warnings with cast to (enum _hdr_types_t)
+
+ nat_traversal.c:1477:54: warning: implicit conversion from 'hdr_flags_t' (aka 'unsigned long long') to 'enum _hdr_types_t' changes value from 18446744073709551615 to -1 [-Wconstant-conversion]
+ nat_traversal.c:1487:49: warning: implicit conversion from 'hdr_flags_t' (aka 'unsigned long long') to 'enum _hdr_types_t' changes value from 18446744073709551615 to -1 [-Wconstant-conversion]
+ (cherry picked from commit 658932119824a0576ce708ed0d09fd43c95addfc)
- mohqueue: remove sql table call_time column's default value
+ modules/call_control: change type to fix clang compiler warning
- it is not supported in some database properly, and it is not
- really needed.
+ call_control.c:503:19: warning: implicit conversion from 'hdr_flags_t' (aka 'unsigned long long') to 'int' changes value from 18446744073709551615 to -1 [-Wconstant-conversion]
+ (cherry picked from commit f6fc513ad968c40d1c990024c4985fa285ba93b6)
- memcached: added alternate memory management wrappers for backwards compatibility with older libmemcached versions and added preprocessor check for the correct ones to use based on installed version.
+ db_perlvdb: clean gcc warning
+
+ perlvdb_conv.c:99:2: warning: enumeration value âDB1_UNKNOWNâ not handled in switch [-Wswitch]
- cdp: fixed spelling and removed some erroneous code
+ tm: formated the comment without + chars
-commit ea442b3155bf25ff48f7fd125b2ffa72a5631852
-Author: Carsten Bock <carsten@ng-voice.com>
-Date: Sun Aug 18 17:47:08 2013 +0200
+commit 0ee3dc5e3edc49cf62f97ddd87a40b12c59b73ff
+Author: jaybeepee <jason.penton@gmail.com>
+Date: Fri Mar 20 13:29:34 2015 +0200
- Only update received info, if a contact is "new" contact. In case of multiple registration for one AoR, each registration will have a different contact.
+ modules/tm: restore code to set blind uac branch last_reply > 200
-Author: Richard Good <richard.good@smilecoms.com>
-Date: Tue Jun 25 15:41:42 2013 +0200
+commit 85c7a3d80dc44ec3bb0302656b3f11e6ee6713c5
+Author: Camille Oudot <camille.oudot@orange.com>
+Date: Fri Feb 20 14:27:41 2015 +0100
- modules/ims_auth: updated documentation
- - updated documentation to use route blocks after async diameter
+ tcpops: README update
-commit bf08aa1a3859766caf0842fdd30b9fc2f4a4ff43
-Author: Richard Good <richard.good@smilecoms.com>
-Date: Tue Jun 25 14:11:13 2013 +0200
+commit 99e65e1526f7720ffc861dd874eb74464e7c12ad
+Author: Camille Oudot <camille.oudot@orange.com>
+Date: Thu Feb 19 17:51:36 2015 +0100
- IMS example config files: update icscf and scscf config files to correctly use async route blocks
- - This fix updates the example ICSCF and SCSCF config files to correctly use route blocks for the replies of any asynchronous Diameter messages
+ tcpops: new function set_connection_lifetime()
-commit 0d5622531d71d0b0ab3fb25a13c3ea1f46581512
-Author: Richard Good <richard.good@smilecoms.com>
-Date: Tue Jun 25 14:09:00 2013 +0200
+commit 0ec36aeacb30eafbbee36a7a8cc4254d0ca8a384
+Author: Jason Penton <jason.penton@gmail.com>
+Date: Fri Feb 20 15:23:45 2015 +0200
- modules/ims_icscf: execute route block on async reply to UAR and LIR
- - Changed this to make the use of async CDP cleaner
- - Fixes inconsistencies we are experiencing with async TM and not using route blocks
- - Note this fix is for UAR replies called from I_perform_user_authorization_request() and LIR replies called from I_perform_location_information_request()
+ modules/ims_registrar_pcscf: lookup of contact should not be based on where request comes from
- core: enclose uri in angle brakets for redirect contact header
+ Merge branch 'master' of https://github.com/kamailio/kamailio
- - safer for uri with parameters and no q
- - reported by Dan Bogos
+ # By Jason Penton
+ # Via Jason Penton
+ * 'master' of https://github.com/kamailio/kamailio:
+ modules/cdp: changed stats to use internal counters instead
-commit d0d298070fdbb015a96f209fa3c925ba71e3a37b
-Author: Juha Heinanen <jh@tutpro.com>
-Date: Mon May 27 13:54:23 2013 +0300
+commit 0c3925e6f787c6e8d2e1bc7a45fec0c99ba203d8
+Author: Luis Azedo <luis@2600hz.com>
+Date: Thu Feb 5 19:35:37 2015 +0000
- modules/usrloc: added two new rpc commands ul.users and ul.contacts
+ kazoo : timeout fixes & improvements
+
+ 1) fixes names in parameters (timout corrected to timeout)
- - for accessing number of different AoRs and contacts in a location table
+ 2) kazoo_query was always using the same timeout value which could be a problem, since there are different kinds of request and some may be given more time to process.
+ solved by adding amqp_query_timeout_avp parameter to allow usage of different timeouts.
+ utils: http_query() now handles large replies properly.
- - it breaks rpc list generation otherwise
+ The callback function passed to CURL (CURLOPT_WRITEFUNCTION) malloc'd one buffer on the presumption that it would be called once. This is not necessarily true for large replies, so the callback was modified to realloc() the buffer upward as needed until all data chunks were retrieved.