[sr-dev] git:master:3c04bda0: path: insert flow token in path header with received

2017-10-09 Thread Rick Barenthin
Module: kamailio
Branch: master
Commit: 3c04bda005430206dd1b9da4f11b474ab8fea363
URL: 
https://github.com/kamailio/kamailio/commit/3c04bda005430206dd1b9da4f11b474ab8fea363

Author: Rick Barenthin 
Committer: Rick Barenthin 
Date: 2017-10-04T17:41:39+02:00

path: insert flow token in path header with received

- added the possiblity to have the received parameter and flow toke
  in the add_path_received function

---

Modified: src/modules/path/doc/path_admin.xml
Modified: src/modules/path/path.c

---

Diff:  
https://github.com/kamailio/kamailio/commit/3c04bda005430206dd1b9da4f11b474ab8fea363.diff
Patch: 
https://github.com/kamailio/kamailio/commit/3c04bda005430206dd1b9da4f11b474ab8fea363.patch


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


Re: [sr-dev] [kamailio/kamailio] Use NAT IP to keep DNS-loadbalance (#1268)

2017-10-09 Thread Mikko Lehto
Kamailio projects uses Github issues only for reporting bugs and tracking 
change requests.
For general discussion there is mailing list: 
https://www.kamailio.org/w/mailing-lists/

-- 
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/1268#issuecomment-335352490___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


Re: [sr-dev] [kamailio/kamailio] Use NAT IP to keep DNS-loadbalance (#1268)

2017-10-09 Thread Mikko Lehto
Closed #1268.

-- 
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/1268#event-1285272117___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] [kamailio/kamailio] Use NAT IP to keep DNS-loadbalance (#1268)

2017-10-09 Thread abell-star
I let two kamailio server processes run in two Nat IP , and DNS to keep 
loadbalance. but DNS can return two Nat IP,when the IP it returns is not the 
same as the account register,the server cann't deal with request,i wonder if i 
can use Nat IP to keep DNS loadbalance?

-- 
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/1268___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] [kamailio/kamailio] registrar: function "registered(...)" different workers integrity (#1267)

2017-10-09 Thread Dmitri Savolainen
### Description
Sometimes "registered" function return different result for different SIP 
worker process.
It seems reproduced for a some time after restart. I have locate it on 
4.4.6version and reproduce for master branch too.  I tried Register/Unregister 
sip account while testing (via SIP)

### Troubleshooting

 Reproduction
```
children=8

# registrar params
modparam("registrar", "append_branches", 0)
modparam("registrar", "use_path", 1)
modparam("registrar", "path_mode", 0) 
modparam("registrar", "max_expires", 1800)
modparam("registrar", "min_expires", 60)

# usrloc params
modparam("usrloc", "db_mode", 2)
modparam("usrloc", "timer_interval", 20) #default 60
modparam("usrloc", "db_check_update", 1)
modparam("usrloc", "use_domain", 1)
modparam("usrloc", "nat_bflag", FLB_NATB) 
modparam("usrloc", "db_ops_ruid", 1)

request_route{
route(REG);
route(TESTREG);
exit;
}

route[SEND_TESTREG]
{
$uac_req(method)="PUBLISH";
$uac_req(ruri) = $tu;
$uac_req(furi) = $tu;
$uac_req(turi) = $tu;
$uac_req(callid) = $ci; 
$uac_req(ouri) = "MYADDRPORT";
uac_req_send();
}

route[PRINT_REGISTERED]
{
if (registered("location", "$tu")){
xlog("L_INFO", "$rm $ci registered");
}
else{
xlog("L_INFO", "$rm $ci NOT registered");
}
}

route[REG] {
if (!is_method("REGISTER")) return;
xlog("L_INFO", "-");
route(PRINT_REGISTERED);
if ( !save("location") ) {
sl_reply_error();
exit;
}
route(PRINT_REGISTERED);
# children=8
route(SEND_TESTREG);
route(SEND_TESTREG);
route(SEND_TESTREG);
route(SEND_TESTREG);
route(SEND_TESTREG);
route(SEND_TESTREG);
route(SEND_TESTREG);
route(SEND_TESTREG);
exit;
}

route[TESTREG]{
if (!is_method("PUBLISH")) return;
usleep("500");
route(PRINT_REGISTERED);
sl_send_reply("200", "OK");
exit;
}
```

 Log Messages
Oct  9 20:13:38 kamailio[19514] INFO: 

[sr-dev] git:master:4267e1ef: tm: updated some structs to typedefs

2017-10-09 Thread Daniel-Constantin Mierla
Module: kamailio
Branch: master
Commit: 4267e1ef7c9ffaac606964fb1b2d64334754b5d9
URL: 
https://github.com/kamailio/kamailio/commit/4267e1ef7c9ffaac606964fb1b2d64334754b5d9

Author: Daniel-Constantin Mierla 
Committer: Daniel-Constantin Mierla 
Date: 2017-10-09T18:27:28+02:00

tm: updated some structs to typedefs

---

Modified: src/modules/tmx/tmx_mod.c

---

Diff:  
https://github.com/kamailio/kamailio/commit/4267e1ef7c9ffaac606964fb1b2d64334754b5d9.diff
Patch: 
https://github.com/kamailio/kamailio/commit/4267e1ef7c9ffaac606964fb1b2d64334754b5d9.patch


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


Re: [sr-dev] [kamailio/kamailio] p_usrloc: Fix #1265: missing columns in location.sql file. (#1266)

2017-10-09 Thread Daniel-Constantin Mierla
Ohh, actually the sql file was in the module folder, I thought is in the 
utils/kamctl/{mysql,postgres,...}. So it is in the wrong place.

Yes, the best is to create xml definition as for location (usrloc module), then 
you can do 'make dbschema' to get the sql files generated. You may need to 
update the Makefile in the schema folder.



-- 
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/1266#issuecomment-335181342___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] git:master:9c936647: modules: readme files regenerated - path ... [skip ci]

2017-10-09 Thread Kamailio Dev
Module: kamailio
Branch: master
Commit: 9c9366473280c52d7f79348637a56264420d48fc
URL: 
https://github.com/kamailio/kamailio/commit/9c9366473280c52d7f79348637a56264420d48fc

Author: Kamailio Dev 
Committer: Kamailio Dev 
Date: 2017-10-09T16:46:17+02:00

modules: readme files regenerated - path ... [skip ci]

---

Modified: src/modules/path/README

---

Diff:  
https://github.com/kamailio/kamailio/commit/9c9366473280c52d7f79348637a56264420d48fc.diff
Patch: 
https://github.com/kamailio/kamailio/commit/9c9366473280c52d7f79348637a56264420d48fc.patch

---

diff --git a/src/modules/path/README b/src/modules/path/README
index d2e3d69398..4d6e7cba5c 100644
--- a/src/modules/path/README
+++ b/src/modules/path/README
@@ -292,6 +292,13 @@ if (!add_path("loadbalancer", "ob")) {
address as domain-part, and the address the request has been received
from as received-parameter.
 
+   If the “outbound” module was loaded before this module, and outbound is
+   required for this request, the header will be in the form “Path:
+   ”, where
+   “flowtoken” is the RFC 5626 flow-token that can be used to identify the
+   source and local address and transport the request was received on, and
+   where “1.2.3.4” is the address of the outgoing interface.
+
This function can be used from REQUEST_ROUTE.
 
Example 1.8. add_path_received() usage


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


Re: [sr-dev] [kamailio/kamailio] p_usrloc: Fix #1265: missing columns in location.sql file. (#1266)

2017-10-09 Thread Lucian Balaceanu
Hello Daniel,

location.sql is the only changed file. I see in the 
src/lib/srdb1/schema/location.sql that this is documented as belonging to 
usrloc and that the columns are present there.

Should I create a similar xml for p_usrloc used tables? 

Thank you

-- 
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/1266#issuecomment-335179910___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


Re: [sr-dev] [kamailio/kamailio] path: insert flow token in path header with received (#1261)

2017-10-09 Thread Daniel-Constantin Mierla
Merged #1261.

-- 
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/1261#event-1284237378___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] git:master:fa8441fb: Merge pull request #1261 from dunst0/feature/flowTokenAndReceived

2017-10-09 Thread GitHub
Module: kamailio
Branch: master
Commit: fa8441fb92460d235d8aa7cbf2611b07dfa6230b
URL: 
https://github.com/kamailio/kamailio/commit/fa8441fb92460d235d8aa7cbf2611b07dfa6230b

Author: Daniel-Constantin Mierla 
Committer: GitHub 
Date: 2017-10-09T16:32:20+02:00

Merge pull request #1261 from dunst0/feature/flowTokenAndReceived

path: insert flow token in path header with received

---

Modified: src/modules/path/doc/path_admin.xml
Modified: src/modules/path/path.c

---

Diff:  
https://github.com/kamailio/kamailio/commit/fa8441fb92460d235d8aa7cbf2611b07dfa6230b.diff
Patch: 
https://github.com/kamailio/kamailio/commit/fa8441fb92460d235d8aa7cbf2611b07dfa6230b.patch


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] git:master:08f81795: modules: readme files regenerated - db_flatstore ... [skip ci]

2017-10-09 Thread Kamailio Dev
Module: kamailio
Branch: master
Commit: 08f817957d1f262aaf5ef4b927c1e9c64a70ec9c
URL: 
https://github.com/kamailio/kamailio/commit/08f817957d1f262aaf5ef4b927c1e9c64a70ec9c

Author: Kamailio Dev 
Committer: Kamailio Dev 
Date: 2017-10-09T16:31:28+02:00

modules: readme files regenerated - db_flatstore ... [skip ci]

---

Modified: src/modules/db_flatstore/README

---

Diff:  
https://github.com/kamailio/kamailio/commit/08f817957d1f262aaf5ef4b927c1e9c64a70ec9c.diff
Patch: 
https://github.com/kamailio/kamailio/commit/08f817957d1f262aaf5ef4b927c1e9c64a70ec9c.patch

---

diff --git a/src/modules/db_flatstore/README b/src/modules/db_flatstore/README
index a8d45e8d9e..16164ce65d 100644
--- a/src/modules/db_flatstore/README
+++ b/src/modules/db_flatstore/README
@@ -5,7 +5,14 @@ Jan Janak
FhG FOKUS

 
+Julien Chavanton
+
+   Flowroute
+   
+
Copyright © 2004, 2005 FhG FOKUS
+
+   Copyright © 2017 Flowroute
  __
 
Table of Contents
@@ -19,6 +26,7 @@ Jan Janak
 2. Parameters
 
   2.1. flush (integer)
+  2.2. encode_delimiter (integer)
 
 Chapter 1. Admin Guide
 
@@ -31,6 +39,7 @@ Chapter 1. Admin Guide
2. Parameters
 
 2.1. flush (integer)
+2.2. encode_delimiter (integer)
 
 1. Overview
 
@@ -81,10 +90,11 @@ modparam("acc", "db_url", "flatstore:/var/log/acc")
 1.1. Rotating Log Files
 
The module implements a Kamailio management interface command called
-   flatstore.rotate. When Kamailio receives the command it will close and
-   reopen all files used by the db_flatstore module. The rotation itself
-   has to be done by another application (such as logrotate). Follow these
-   steps to rotate files generated by the db_flatstore module:
+   flatstore.k_rotate. When Kamailio receives the command it will close
+   and reopen all files used by the db_flatstore module. The rotation
+   itself has to be done by another application (such as logrotate).
+   Follow these steps to rotate files generated by the db_flatstore
+   module:
  * Rename the files that you want to rotate:
 cd /var/log/acc
 mv acc_1.log acc_1.log.20050605
@@ -95,7 +105,7 @@ mv acc_4.log acc_3.log.20050605
into the renamed files.
  * Send Kamailio the management command to close and reopen the
renamed files:
-kamcmd flatstore.rotate
+kamcmd flatstore.k_rotate
This will force Kamailio to close the renamed files and open new
ones with original names, such as acc_1.log. New files will be open
at the point when Kamailio has some data to write. It is normal
@@ -106,9 +116,18 @@ kamcmd flatstore.rotate
 2. Parameters
 
2.1. flush (integer)
+   2.2. encode_delimiter (integer)
 
 2.1. flush (integer)
 
Enable or disable flushing after each write.
 
Default value is 1.
+
+2.2. encode_delimiter (integer)
+
+   Enable or disable encoding tof the escaped character using ""%" HEX
+   HEX" mechanism for escaping from RFC 2396
+
+   Default value is 1. Default delimiter '|' is replaced with %7C if found
+   in any string


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] git:master:c203af8d: Merge pull request #1262 from jchavanton/db_flatstore_delimiter

2017-10-09 Thread GitHub
Module: kamailio
Branch: master
Commit: c203af8d977cd977f2614d22fab84fead07dc25a
URL: 
https://github.com/kamailio/kamailio/commit/c203af8d977cd977f2614d22fab84fead07dc25a

Author: Daniel-Constantin Mierla 
Committer: GitHub 
Date: 2017-10-09T16:29:17+02:00

Merge pull request #1262 from jchavanton/db_flatstore_delimiter

db_flatstore: encode delimiter param

---

Modified: src/modules/db_flatstore/db_flatstore.c
Modified: src/modules/db_flatstore/doc/db_flatstore.xml
Modified: src/modules/db_flatstore/doc/db_flatstore_params.xml
Modified: src/modules/db_flatstore/km_flatstore.c
Modified: src/modules/db_flatstore/km_flatstore.h

---

Diff:  
https://github.com/kamailio/kamailio/commit/c203af8d977cd977f2614d22fab84fead07dc25a.diff
Patch: 
https://github.com/kamailio/kamailio/commit/c203af8d977cd977f2614d22fab84fead07dc25a.patch


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] git:master:4571f168: db_flatstore: encode delimiter param

2017-10-09 Thread Julien Chavanton
Module: kamailio
Branch: master
Commit: 4571f168ea1d8d51ed31a5dd7e581ecc84b53d00
URL: 
https://github.com/kamailio/kamailio/commit/4571f168ea1d8d51ed31a5dd7e581ecc84b53d00

Author: Julien Chavanton 
Committer: Julien Chavanton 
Date: 2017-10-04T08:36:12-07:00

db_flatstore: encode delimiter param

using  ""%" HEX HEX" mechanism for escaping from RFC 2396

---

Modified: src/modules/db_flatstore/db_flatstore.c
Modified: src/modules/db_flatstore/doc/db_flatstore.xml
Modified: src/modules/db_flatstore/doc/db_flatstore_params.xml
Modified: src/modules/db_flatstore/km_flatstore.c
Modified: src/modules/db_flatstore/km_flatstore.h

---

Diff:  
https://github.com/kamailio/kamailio/commit/4571f168ea1d8d51ed31a5dd7e581ecc84b53d00.diff
Patch: 
https://github.com/kamailio/kamailio/commit/4571f168ea1d8d51ed31a5dd7e581ecc84b53d00.patch


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] git:master:b8d5c7fb: p_usrloc: location.sql missing INSTANCE_COL

2017-10-09 Thread Lucian Balaceanu
Module: kamailio
Branch: master
Commit: b8d5c7fbe994bb581c1e78285f08ec1980f6b89f
URL: 
https://github.com/kamailio/kamailio/commit/b8d5c7fbe994bb581c1e78285f08ec1980f6b89f

Author: Lucian Balaceanu 
Committer: Lucian Balaceanu 
Date: 2017-10-09T16:05:01+03:00

p_usrloc: location.sql missing INSTANCE_COL

---

Modified: src/modules/p_usrloc/location.sql

---

Diff:  
https://github.com/kamailio/kamailio/commit/b8d5c7fbe994bb581c1e78285f08ec1980f6b89f.diff
Patch: 
https://github.com/kamailio/kamailio/commit/b8d5c7fbe994bb581c1e78285f08ec1980f6b89f.patch

---

diff --git a/src/modules/p_usrloc/location.sql 
b/src/modules/p_usrloc/location.sql
index e729c0f94e..9f39dd4218 100644
--- a/src/modules/p_usrloc/location.sql
+++ b/src/modules/p_usrloc/location.sql
@@ -17,6 +17,7 @@ CREATE TABLE location (
 user_agent VARCHAR(255) DEFAULT '' NOT NULL,
 socket VARCHAR(64) DEFAULT NULL,
 methods INT(11) DEFAULT NULL,
+instance VARCHAR(255) DEFAULT NULL,
 reg_id INTEGER DEFAULT 0 NOT NULL
 ) ENGINE=MyISAM;
 


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


Re: [sr-dev] [kamailio/kamailio] p_usrloc: location.sql missing RUID_COL and REG_ID_COL (#1265)

2017-10-09 Thread Lucian Balaceanu
Hello,

p_usrloc has not been kept up to date with latest usrloc and as such for now I 
cannot tell you if the seemingly superset of columns in the usrloc-create.sql 
does it.
If we only had one sql, the patching would also have to be done in the unlikely 
case that usrloc would delete fields in the usrloc-create.sql imho.

Thanks

-- 
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/1265#issuecomment-335147189___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


Re: [sr-dev] [kamailio/kamailio] p_usrloc: Fix #1265: missing columns in location.sql file. (#1266)

2017-10-09 Thread Lucian Balaceanu
Thank you for your fix.

-- 
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/1266#issuecomment-335145249___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


Re: [sr-dev] [kamailio/kamailio] p_usrloc: location.sql missing RUID_COL and REG_ID_COL (#1265)

2017-10-09 Thread Lucian Balaceanu
Closed #1265 via 9be2a96651f743af0a22d0534ee9fc90e857d484.

-- 
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/1265#event-1284021531___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


Re: [sr-dev] [kamailio/kamailio] p_usrloc: Fix #1265: missing columns in location.sql file. (#1266)

2017-10-09 Thread Lucian Balaceanu
Merged #1266.

-- 
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/1266#event-1284021462___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] git:master:f9115fc5: Merge pull request #1266 from asiplas/master

2017-10-09 Thread GitHub
Module: kamailio
Branch: master
Commit: f9115fc5fcdc0f4348e3c38b72117e09ce670226
URL: 
https://github.com/kamailio/kamailio/commit/f9115fc5fcdc0f4348e3c38b72117e09ce670226

Author: Lucian Balaceanu 
Committer: GitHub 
Date: 2017-10-09T15:36:23+03:00

Merge pull request #1266 from asiplas/master

p_usrloc: Fix #1265: missing columns in location.sql file.

---

Modified: src/modules/p_usrloc/location.sql

---

Diff:  
https://github.com/kamailio/kamailio/commit/f9115fc5fcdc0f4348e3c38b72117e09ce670226.diff
Patch: 
https://github.com/kamailio/kamailio/commit/f9115fc5fcdc0f4348e3c38b72117e09ce670226.patch

---

diff --git a/src/modules/p_usrloc/location.sql 
b/src/modules/p_usrloc/location.sql
index a80902abbe..e729c0f94e 100644
--- a/src/modules/p_usrloc/location.sql
+++ b/src/modules/p_usrloc/location.sql
@@ -1,6 +1,7 @@
 drop table if exists location;
 CREATE TABLE location (
 id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL,
+ruid VARCHAR(64) DEFAULT '' NOT NULL,
 username VARCHAR(64) DEFAULT '' NOT NULL,
 domain VARCHAR(64) DEFAULT NULL,
 contact VARCHAR(255) DEFAULT '' NOT NULL,
@@ -15,7 +16,8 @@ CREATE TABLE location (
 cflags INT(11) DEFAULT 0 NOT NULL,
 user_agent VARCHAR(255) DEFAULT '' NOT NULL,
 socket VARCHAR(64) DEFAULT NULL,
-methods INT(11) DEFAULT NULL
+methods INT(11) DEFAULT NULL,
+reg_id INTEGER DEFAULT 0 NOT NULL
 ) ENGINE=MyISAM;
 
 CREATE INDEX account_contact_idx ON location (username, domain, contact);


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] git:master:fa948316: modules: readme files regenerated - mediaproxy ... [skip ci]

2017-10-09 Thread Kamailio Dev
Module: kamailio
Branch: master
Commit: fa948316059a140ee906d386c5a2a3123e9c370c
URL: 
https://github.com/kamailio/kamailio/commit/fa948316059a140ee906d386c5a2a3123e9c370c

Author: Kamailio Dev 
Committer: Kamailio Dev 
Date: 2017-10-09T12:47:04+02:00

modules: readme files regenerated - mediaproxy ... [skip ci]

---

Modified: src/modules/mediaproxy/README
Modified: src/modules/misc_radius/README

---

Diff:  
https://github.com/kamailio/kamailio/commit/fa948316059a140ee906d386c5a2a3123e9c370c.diff
Patch: 
https://github.com/kamailio/kamailio/commit/fa948316059a140ee906d386c5a2a3123e9c370c.patch

---

diff --git a/src/modules/mediaproxy/README b/src/modules/mediaproxy/README
index 122de0878d..7be9930e9c 100644
--- a/src/modules/mediaproxy/README
+++ b/src/modules/mediaproxy/README
@@ -25,7 +25,7 @@ Dan Pascu
   4.1. SIP Router Modules
   4.2. External Libraries or Applications
 
-5. Exported parameters
+5. Parameters
 
   5.1. disable (int)
   5.2. mediaproxy_socket (string)
@@ -66,7 +66,7 @@ Chapter 1. Admin Guide
 4.1. SIP Router Modules
 4.2. External Libraries or Applications
 
-   5. Exported parameters
+   5. Parameters
 
 5.1. disable (int)
 5.2. mediaproxy_socket (string)
@@ -160,7 +160,7 @@ Chapter 1. Admin Guide
  * Mediaproxy version 2.4.2 or higher (but not necessarily on the same
host as SIP Router).
 
-5. Exported parameters
+5. Parameters
 
5.1. disable (int)
5.2. mediaproxy_socket (string)
diff --git a/src/modules/misc_radius/README b/src/modules/misc_radius/README
index 62685c59ac..c5d41f59cd 100644
--- a/src/modules/misc_radius/README
+++ b/src/modules/misc_radius/README
@@ -182,6 +182,7 @@ Chapter 1. Admin Guide
Example 1.2. radius_config parameter usage
 ...
 modparam("misc_radius", "radius_config", "/etc/radiusclient.conf")
+...
 
 3.2. caller_service_type (integer)
 
@@ -193,6 +194,7 @@ modparam("misc_radius", "radius_config", 
"/etc/radiusclient.conf")
Example 1.3. caller_service_type parameter usage
 ...
 modparam("misc_radius", "caller_service_type", 18)
+...
 
 3.3. callee_service_type (integer)
 
@@ -204,6 +206,7 @@ modparam("misc_radius", "caller_service_type", 18)
Example 1.4. callee_service_type parameter usage
 ...
 modparam("misc_radius", "callee_service_type", 19)
+...
 
 3.4. group_service_type (integer)
 
@@ -215,6 +218,7 @@ modparam("misc_radius", "callee_service_type", 19)
Example 1.5. group_service_type parameter usage
 ...
 modparam("misc_radius", "group_service_type", 20)
+...
 
 3.5. uri_service_type (integer)
 
@@ -226,6 +230,7 @@ modparam("misc_radius", "group_service_type", 20)
Example 1.6. uri_service_type parameter usage
 ...
 modparam("misc_radius", "uri_service_type", 21)
+...
 
 3.6. caller_extra (string)
 
@@ -240,6 +245,7 @@ modparam("misc_radius", "uri_service_type", 21)
Example 1.7. caller_extra parameter usage
 ...
 modparam("misc_radius", "caller_extra", "Calling-Station-Id=$fu")
+...
 
 3.7. callee_extra (string)
 
@@ -254,6 +260,7 @@ modparam("misc_radius", "caller_extra", 
"Calling-Station-Id=$fu")
Example 1.8. callee_extra parameter usage
 ...
 modparam("misc_radius", "callee_extra", "SIP-URI-User=$rU;SIP-URI-Host=$rd")
+...
 
 3.8. group_extra (string)
 
@@ -268,6 +275,7 @@ modparam("misc_radius", "callee_extra", 
"SIP-URI-User=$rU;SIP-URI-Host=$rd")
Example 1.9. group_extra parameter usage
 ...
 modparam("misc_radius", "group_extra", "My-Special=$avp(i:100)")
+...
 
 3.9. uri_extra (string)
 
@@ -282,6 +290,7 @@ modparam("misc_radius", "group_extra", 
"My-Special=$avp(i:100)")
Example 1.10. uri_extra parameter usage
 ...
 modparam("misc_radius", "uri_extra", "Called-Station-Id=$tu")
+...
 
 3.10. use_sip_uri_host (integer)
 
@@ -295,6 +304,7 @@ modparam("misc_radius", "uri_extra", 
"Called-Station-Id=$tu")
Example 1.11. use_sip_uri_host parameter usage
 ...
 modparam("misc_radius", "use_sip_uri_host", 1)
+...
 
 3.11. common_response (integer)
 


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] git:master:e49512ce: misc_radius: end separator for examples in docs

2017-10-09 Thread Daniel-Constantin Mierla
Module: kamailio
Branch: master
Commit: e49512ce80693aa2638d9fca940ded5a889cd2f9
URL: 
https://github.com/kamailio/kamailio/commit/e49512ce80693aa2638d9fca940ded5a889cd2f9

Author: Daniel-Constantin Mierla 
Committer: Daniel-Constantin Mierla 
Date: 2017-10-08T22:54:00+02:00

misc_radius: end separator for examples in docs

- added section ids

---

Modified: src/modules/misc_radius/doc/misc_radius_admin.xml

---

Diff:  
https://github.com/kamailio/kamailio/commit/e49512ce80693aa2638d9fca940ded5a889cd2f9.diff
Patch: 
https://github.com/kamailio/kamailio/commit/e49512ce80693aa2638d9fca940ded5a889cd2f9.patch


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] git:master:9cc48208: mediaproxy: code formatting using clang

2017-10-09 Thread Daniel-Constantin Mierla
Module: kamailio
Branch: master
Commit: 9cc48208ec92f3e12be53e8054603e0ee248675f
URL: 
https://github.com/kamailio/kamailio/commit/9cc48208ec92f3e12be53e8054603e0ee248675f

Author: Daniel-Constantin Mierla 
Committer: Daniel-Constantin Mierla 
Date: 2017-10-07T23:17:39+02:00

mediaproxy: code formatting using clang

---

Modified: src/modules/mediaproxy/mediaproxy.c

---

Diff:  
https://github.com/kamailio/kamailio/commit/9cc48208ec92f3e12be53e8054603e0ee248675f.diff
Patch: 
https://github.com/kamailio/kamailio/commit/9cc48208ec92f3e12be53e8054603e0ee248675f.patch


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


[sr-dev] INFO: qq.com domain was blocked due to very high volume of spam

2017-10-09 Thread Daniel-Constantin Mierla
Hello,

writing to inform everyone that currently the qq.com domain is
blacklisted by the kamailio.org email server due to high volume of spam
sent to many admin addresses and mailing lists. Spamassassin had very
hard time digesting and filtering, as content kept changing and
addresses were random.

I didn't get the chance yet to check if we have subscribers with this
domain, so, as a fast lane, if you use it and don't have the possibility
to quickly switch to another email server domain, write me to try to
whitelist the address. Hopefully, if anyone is affected, there is not
much inconvenience, but it was the only quick solution that could be
applied for the moment.

Cheers,
Daniel

-- 
Daniel-Constantin Mierla
www.twitter.com/miconda -- www.linkedin.com/in/miconda
Kamailio Advanced Training - www.asipto.com
Kamailio World Conference - www.kamailioworld.com


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev


Re: [sr-dev] Roadmap to Kamailio v5.1

2017-10-09 Thread Daniel-Constantin Mierla
Hello,

the dates for next major release were confirmed during the IRC devel
meeting, so I am now following up to remind that we are one week before
freezing the development for next major release, v5.1.0.

If you plan to add new modules or new features for existing components,
you'd have to hurry a bit.

Cheers,
Daniel


On 18.09.17 10:38, Daniel-Constantin Mierla wrote:
> Hello,
>
> being discussed at the previous IRC devel meeting before the summer,
> it's time to plan the preparation for next major release, respectively
> Kamailio 5.1 series.
>
> As an initial proposal, a timeline can be:
>
>   - Mon, Oct 16, 2017 - freeze the development
>   - in 3-4 weeks after that, create the branch 5.1
>   - 2-3 weeks after, do the release of v5.1.0
>
> That means more or less by end of November we will have first version of
> 5.1 series.
>
> There are still 4 weeks of development, hopefully enough to get ongoing
> work finished. I know from github tracker that there are people working
> on redis support for usrloc. I will focus on exporting more functions to
> kemi, right now should be around 60%, by freeze should be more than 80%
> (likely that means all of what most of people use these days, because
> there are some modules that I guess are not much used). Maybe one or two
> modules will be pushed as well from my side.
>
> I think we should also do an IRC devel meeting to try to sync better on
> this. Maybe by mid of next week, I will send another email shortly.
>
> Should anyone have more details to add or adjust the proposal, do not
> hesitate to reply to mailing list!
>
> Cheers,
> Daniel
>

-- 
Daniel-Constantin Mierla
www.twitter.com/miconda -- www.linkedin.com/in/miconda
Kamailio Advanced Training - www.asipto.com
Kamailio World Conference - www.kamailioworld.com


___
Kamailio (SER) - Development Mailing List
sr-dev@lists.kamailio.org
https://lists.kamailio.org/cgi-bin/mailman/listinfo/sr-dev