Module: kamailio
Branch: master
Commit: 1a76fb05126d8154e59fc1524727d7f84d8cff2c
URL: https://github.com/kamailio/kamailio/commit/1a76fb05126d8154e59fc1524727d7f…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2015-03-27T15:43:37+01:00
srdb1/schema: new columns to table location
- server_id - store the value for server id
- connection_id - store the value for connection id of location record,
to be used for db only mode tcp optimizations (not restored after
restart)
- keepalive - set if the nat branch flag is set for the contact, to
speedup selection of records for nat keep alive in db only mode
---
Modified: lib/srdb1/schema/location.xml
---
Diff: https://github.com/kamailio/kamailio/commit/1a76fb05126d8154e59fc1524727d7f…
Patch: https://github.com/kamailio/kamailio/commit/1a76fb05126d8154e59fc1524727d7f…
---
diff --git a/lib/srdb1/schema/location.xml b/lib/srdb1/schema/location.xml
index be92306..a39cd52 100644
--- a/lib/srdb1/schema/location.xml
+++ b/lib/srdb1/schema/location.xml
@@ -9,7 +9,7 @@
<table id="location" xmlns:db="http://docbook.org/ns/docbook">
<name>location</name>
- <version>6</version>
+ <version>7</version>
<type db="mysql">&MYSQL_TABLE_TYPE;</type>
<description>
<db:para>Persistent user location information for the usrloc module. More information can be found at: &KAMAILIO_MOD_DOC;usrloc.html
@@ -179,6 +179,30 @@
<description>The value of reg-id contact parameter</description>
</column>
+ <column>
+ <name>server_id</name>
+ <type>int</type>
+ <size>11</size>
+ <default>0</default>
+ <description>The value of server_id from configuration file</description>
+ </column>
+
+ <column>
+ <name>connection_id</name>
+ <type>int</type>
+ <size>11</size>
+ <default>0</default>
+ <description>The value of connection id for location record</description>
+ </column>
+
+ <column>
+ <name>keepalive</name>
+ <type>int</type>
+ <size>11</size>
+ <default>0</default>
+ <description>The value to control sending keep alive requests</description>
+ </column>
+
<index>
<name>account_contact_idx</name>
Hello,
in order to facilitate easier interaction and updates, references
(http://www.kamailio.org/w/references/) and some of the business use
cases already listed on kamailio.org are in the process of being moved
to a new page:
- http://www.kamailio.org/w/used-by/
This offers now the possibility to submit new entries without the
interaction with Kamailio admins that could lead to delays. The form is
available at:
- http://www.kamailio.org/w/used-by-form/
The goals is to show where Kamailio is used as well as increase the
visibility of the products, solutions and services offered by the
Kamailio community. Anyone is welcome to add own references.
Besides a spambot protection of the form, we rely for now on the good
manners of human nature, if you notice anything inadequate there, please
report to be corrected.
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
This patch add the possibility to specify the src ip addr we want to use when connecting to a peer.
Useful when we have several ip addresses in the same machine and we want diameter traffic goimg out from a specific one.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/45
-- Commit Summary --
* modules/cdp: added src_addr parameter in peer definition
-- File Changes --
M modules/cdp/config.h (1)
M modules/cdp/configexample/ConfigExample.xml (2)
M modules/cdp/configparser.c (9)
M modules/cdp/peer.c (5)
M modules/cdp/peer.h (23)
M modules/cdp/peermanager.c (6)
M modules/cdp/receiver.c (21)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/45.patchhttps://github.com/kamailio/kamailio/pull/45.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/45