some UAs send very low values for subscriptions causing unwanted flooding of the server with subscribe/notify messages
this new parameter allows to set a minimum value for the subscription.
default value is 0 to preserve existing behaviour
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/78
-- Commit Summary --
* presence : add min_expires param
-- File Changes --
M modules/presence/presence.c (8)
M modules/presence/presence.h (1)
M modules/presence/subscribe.c (11)
M modules/presence/subscribe.h (4)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/78.patchhttps://github.com/kamailio/kamailio/pull/78.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/78
I've been playing about with SIP-T and the sipt module and it looks like search_boundary() in parser/parse_body.c fails for binary content like SIP-I or SIP-T if the content is split in multipart mode as in the case of a INVITE which contains SDP content and ISUP (binary) content.
I commented out the following lines in search_boundary() and it seems to work ok now
// /* go to the next line */
// while ((c < buf_end) && (*c != '\n')) c++;
---
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/83
Hello,
being discussed yesterday during the IRC devel meeting, the proposed
planning for next major release (v4.3.0) is:
- freeze the development sometime in April - after mid of March decide
the exact date when the development is going to be frozen
- testing during last part of April and May
- based on testing results, release in the time frame: end of May till
mid of June
>From git activity, there are already several new modules and plenty of
new features -- don't forget to add them to:
- http://www.kamailio.org/wiki/features/new-in-devel
Also, any detail that is relevant for upgrading has to added to:
- https://www.kamailio.org/wiki/install/upgrade/stable-to-devel
Cheers,
Daniel
--
Daniel-Constantin Mierla
http://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda
Kamailio World Conference, May 27-29, 2015
Berlin, Germany - http://www.kamailioworld.com
Module: kamailio
Branch: 4.2
Commit: 458e8ba0ff7a7453050734c47f71a7b9bcaa03a6
URL: https://github.com/kamailio/kamailio/commit/458e8ba0ff7a7453050734c47f71a7b…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2015-02-12T09:52:40+01:00
sqlops: regenereated the readme file
(cherry picked from commit 61d6b119398a87c4a877de3fba0dc9c6ec2830a7)
---
Modified: modules/sqlops/README
---
Diff: https://github.com/kamailio/kamailio/commit/458e8ba0ff7a7453050734c47f71a7b…
Patch: https://github.com/kamailio/kamailio/commit/458e8ba0ff7a7453050734c47f71a7b…
---
diff --git a/modules/sqlops/README b/modules/sqlops/README
index 1ad1be6..ccf03b3 100644
--- a/modules/sqlops/README
+++ b/modules/sqlops/README
@@ -280,7 +280,8 @@ sql_result_free("ra");
module (e.g., db_mysql). The query is executed in another process and
result is not available back to config, thus it should be used only for
sql statements that don't return values (e.g., insert, delete,
- update...).
+ update...). Note that async_workers core parameter must be set in order
+ to enable the asyncronous framework needed by this function.
* connection - the name of the connection to be used for the query
(defined via "sqlcon" parameter).
* query - SQL query string or pseudo-variables containing SQL query.