Module: kamailio
Branch: master
Commit: 6619c0d21d6ba862d30f41e93f87e0b3ec06cd02
URL: https://github.com/kamailio/kamailio/commit/6619c0d21d6ba862d30f41e93f87e0b…
Author: Richard Fuchs <rfuchs(a)sipwise.com>
Committer: Richard Fuchs <rfuchs(a)sipwise.com>
Date: 2014-12-16T09:10:10-05:00
db_postgres: add new module vars "timeout" and "tcp_keepalive"
The "timeout" option enables a query timeout as well as a connection
timeout, set to the specified number of seconds.
The "tcp_keepalive" option enables the kernel's TCP keepalive packets
on the PGSQL socket and sets the keepalive timer to the specified number
of seconds. Only supported if the platform supports the TCP_KEEPIDLE
socket option.
---
Modified: modules/db_postgres/README
Modified: modules/db_postgres/doc/db_postgres_admin.xml
Modified: modules/db_postgres/km_dbase.c
Modified: modules/db_postgres/km_pg_con.c
Modified: modules/db_postgres/pg_con.c
Modified: modules/db_postgres/pg_mod.c
Modified: modules/db_postgres/pg_mod.h
---
Diff: https://github.com/kamailio/kamailio/commit/6619c0d21d6ba862d30f41e93f87e0b…
Patch: https://github.com/kamailio/kamailio/commit/6619c0d21d6ba862d30f41e93f87e0b…
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A new Flyspray task has been opened. Details are below.
User who did this - Varghese Paul (varghesepaul87)
Attached to Project - sip-router
Summary - To disable sslv3 in kamailio and allow all other TLS method.
Task Type - Feature Request
Category - Modules kamailio
Status - Unconfirmed
Assigned To -
Operating System - All
Severity - Low
Priority - Normal
Reported Version - Development
Due in Version - Undecided
Due Date - Undecided
Details - Hi all,
We are trying to remove the SSL3 support from our kamailio due to poodle attack.
kamailio -v
version: kamailio 4.2.1 (x86_64/linux)
modparam("tls", "tls_method", "SSLv23")
Currently we are using the above method and we can see that it will support following ssl methods sslv3,tlsv1,tlsv1.1 and tlsv1.2.
Is it possible in kamailio to disable only sslv3 and allow all other tls version (tlsv1,tlsv1.1 and tlsv1.2) ?. If not which is the common suggested version in kamailio to avoid ssl negotiation ?
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=502
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
Module: kamailio
Branch: master
Commit: 53cfb31a4b13afb16e6cbfe82993990ee1bbb8ef
URL: https://github.com/kamailio/kamailio/commit/53cfb31a4b13afb16e6cbfe82993990…
Author: Olle E. Johansson <oej(a)edvina.net>
Committer: Olle E. Johansson <oej(a)edvina.net>
Date: 2014-12-16T10:09:45+01:00
srdb1 Change error message.
This error message is shown both if module is not loaded at all and if module actually doesn't
support the function.
---
Modified: lib/srdb1/db.c
---
Diff: https://github.com/kamailio/kamailio/commit/53cfb31a4b13afb16e6cbfe82993990…
Patch: https://github.com/kamailio/kamailio/commit/53cfb31a4b13afb16e6cbfe82993990…
---
diff --git a/lib/srdb1/db.c b/lib/srdb1/db.c
index 98d3cde..72fe2d8 100644
--- a/lib/srdb1/db.c
+++ b/lib/srdb1/db.c
@@ -78,19 +78,19 @@ int db_check_api(db_func_t* dbf, char *mname)
/* All modules must export db_use_table */
if (dbf->use_table == 0) {
- LM_ERR("module %s does not export db_use_table function\n", mname);
+ LM_ERR("module %s does not export db_use_table function. Please check if module is loaded.\n", mname);
goto error;
}
/* All modules must export db_init */
if (dbf->init == 0) {
- LM_ERR("module %s does not export db_init function\n", mname);
+ LM_ERR("module %s does not export db_init function. Please check if module is loaded.\n", mname);
goto error;
}
/* All modules must export db_close */
if (dbf->close == 0) {
- LM_ERR("module %s does not export db_close function\n", mname);
+ LM_ERR("module %s does not export db_close function. Please check if module is loaded.\n", mname);
goto error;
}
Module: kamailio
Branch: master
Commit: d035d0fe5e6f8298c7973432216ee0ba16840124
URL: https://github.com/kamailio/kamailio/commit/d035d0fe5e6f8298c7973432216ee0b…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2014-12-15T23:11:42+01:00
dispatcher: better phrasing of comment in the code
---
Modified: modules/dispatcher/dispatch.c
---
Diff: https://github.com/kamailio/kamailio/commit/d035d0fe5e6f8298c7973432216ee0b…
Patch: https://github.com/kamailio/kamailio/commit/d035d0fe5e6f8298c7973432216ee0b…
---
diff --git a/modules/dispatcher/dispatch.c b/modules/dispatcher/dispatch.c
index 434593a..c17d7a3 100644
--- a/modules/dispatcher/dispatch.c
+++ b/modules/dispatcher/dispatch.c
@@ -417,7 +417,7 @@ int add_dest2list(int id, str uri, int flags, int priority, str *attrs,
/**
* Initialize the weight distribution for a destination set
- * - build an array of 0..99 where to keep the index of the
+ * - fill the array of 0..99 elements where to keep the index of the
* destination address to be used. The Nth call will use
* the address with the index at possition N%100
*/
Hello,
those on sr-dev mailing list probably noticed the last commit
notification - the email format can be seen at:
- http://lists.sip-router.org/pipermail/sr-dev/2014-December/026513.html
As discussed in the past, it tries to stay as close as possible to the
old notification message, but it has some differences.
I published the php script I use for generating this notification as
well as synchronizing the git repository mirror on kamailio.org. It is
available at:
- https://github.com/miconda/gitpushub
If people prefer, we can make a clone inside kamailio organization and
tailor it to be more specific for kamailio repository, with more people
having direct access to update it.
On the other hand, any contribution to the script to make it better or
more useful is welcome! Eventually it is going to be useful for various
people with their other projects.
Cheers,
Daniel
--
Daniel-Constantin Mierla
http://twitter.com/#!/miconda - http://www.linkedin.com/in/miconda
Hi list,
What do you think, do we need dispatcher to be able to propagate state
changes with dmq to other nodes? Will this functionality be useful?
--
Best regards,
Alekzander Spiridonov