#### Pre-Submission Checklist
- [ ] Commit message has the format required by CONTRIBUTING guide
- [x] Commits are split per component (core, individual modules, libs, utils, ...)
- [ ] Each component has a single commit (if not, squash them into one commit)
- [x] No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [ ] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature …
[View More](non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
- [ ] PR should be backported to stable branches
- [x] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1245
-- Commit Summary --
* pkg/kamailio/alpine: Removed unnecessary patches
* pkg/kamailio/alpine_docker: Added docker packaging scripts
* pkg/kamailio/alpine: Packaged rabbitmq, sctp, radius modules
-- File Changes --
D pkg/kamailio/alpine/0002-remove-spurious-execinfo.patch (30)
D pkg/kamailio/alpine/0003-src_modules_tls_tls_init_c.patch (131)
M pkg/kamailio/alpine/APKBUILD (24)
A pkg/kamailio/alpine_docker/Dockerfile (6)
A pkg/kamailio/alpine_docker/README.md (91)
A pkg/kamailio/alpine_docker/build.sh (137)
A pkg/kamailio/alpine_docker/entrypoint.sh (14)
A pkg/kamailio/alpine_docker/hooks/pre_build (14)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1245.patchhttps://github.com/kamailio/kamailio/pull/1245.diff
--
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/1245
[View Less]
Module: kamailio
Branch: master
Commit: 305dbe7197f87d8e14bb75f14553852c8e3c9b8c
URL: https://github.com/kamailio/kamailio/commit/305dbe7197f87d8e14bb75f14553852…
Author: Alex Hermann <alex(a)hexla.nl>
Committer: Alex Hermann <alex(a)hexla.nl>
Date: 2017-09-22T11:56:54+02:00
json: Add fixup_free function for json_get_field
---
Modified: src/modules/json/json_mod.c
---
Diff: https://github.com/kamailio/kamailio/commit/305dbe7197f87d8e14bb75f14553852…
Patch: https://github.com/…
[View More]kamailio/kamailio/commit/305dbe7197f87d8e14bb75f14553852…
---
diff --git a/src/modules/json/json_mod.c b/src/modules/json/json_mod.c
index b20299efe9..ec7a5fced3 100644
--- a/src/modules/json/json_mod.c
+++ b/src/modules/json/json_mod.c
@@ -82,7 +82,7 @@ static int fixup_get_field(void** param, int param_no)
static int fixup_get_field_free(void** param, int param_no)
{
if (param_no == 1 || param_no == 2) {
- LM_WARN("free function has not been defined for spve\n");
+ fixup_free_spve_null(param, 1);
return 0;
}
[View Less]
<!-- Kamailio Pull Request Template -->
<!--
IMPORTANT:
- for detailed contributing guidelines, read:
https://github.com/kamailio/kamailio/blob/master/.github/CONTRIBUTING.md
- pull requests must be done to master branch, unless they are backports
of fixes from master branch to a stable branch
- backports to stable branches must be done with 'git cherry-pick -x ...'
- code is contributed under BSD for core and main components (tm, sl, auth, tls)
- code is contributed …
[View More]GPLv2 or a compatible license for the other components
- GPL code is contributed with OpenSSL licensing exception
-->
#### Pre-Submission Checklist
<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply -->
<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above-->
<!-- If you're unsure about any of these, don't hesitate to ask on sr-dev mailing list -->
- [x] Commit message has the format required by CONTRIBUTING guide
- [x] Commits are split per component (core, individual modules, libs, utils, ...)
- [x] Each component has a single commit (if not, squash them into one commit)
- [x] No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [x] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
<!-- Go over all points below, and after creating the PR, tick the checkboxes that apply -->
- [x] PR should be backported to stable branches
- [x] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
<!-- Describe your changes in detail -->
Small fixes to cfgutils and json modules
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1242
-- Commit Summary --
* cfgutils: Add fixup_free functions to (u)sleep functions
* cfgutils: Allow pv in check_route_exists() and route_if_exists()
* cfgutils: Properly handle 'exit' when from route_if_exists()
* cfgutils: Remove debug statements in sleep functions
* json: Add fixup_free function for json_get_field
* janssonrcp-c: Fix segfault in mod_destroy
-- File Changes --
M src/modules/cfgutils/cfgutils.c (32)
M src/modules/janssonrpcc/janssonrpcc_mod.c (6)
M src/modules/json/json_mod.c (2)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1242.patchhttps://github.com/kamailio/kamailio/pull/1242.diff
--
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/1242
[View Less]
#### Pre-Submission Checklist
- [x] Commit message has the format required by CONTRIBUTING guide
- [x] Commits are split per component (core, individual modules, libs, utils, ...)
- [ ] Each component has a single commit (if not, squash them into one commit)
- [x] No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [ ] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature …
[View More](non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
- [ ] PR should be backported to stable branches
- [x] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
pkg/kamailio/obs: Added support of OpenSUSE Tumbleweed
pkg/kamailio/obs Fixed build of perl module
pkg/kamailio: Added links to obs spec file for:
- Fedora 25, 26
- RHEL 6, 7
- OpenSUSE Leap
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1241
-- Commit Summary --
* pkg/kamailio: Added links to obs spec file for:
* pkg/kamailio/obs Fixed build of perl module
* pkg/kamailio/obs: Added support of OpenSUSE Tumbleweed
-- File Changes --
A pkg/kamailio/fedora/25 (1)
A pkg/kamailio/fedora/26 (1)
M pkg/kamailio/obs/kamailio.spec (81)
M pkg/kamailio/obs/meta (5)
A pkg/kamailio/opensuse/1315 (1)
A pkg/kamailio/opensuse/1330 (1)
A pkg/kamailio/rhel/6 (1)
A pkg/kamailio/rhel/7 (1)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1241.patchhttps://github.com/kamailio/kamailio/pull/1241.diff
--
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/1241
[View Less]
Module: kamailio
Branch: master
Commit: 7326e7233890db9877992fda7ce8e969fd59be73
URL: https://github.com/kamailio/kamailio/commit/7326e7233890db9877992fda7ce8e96…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2017-09-22T09:22:52+02:00
ims_registrar_pcscf: added default license header for new files
---
Modified: src/modules/ims_registrar_pcscf/sec_agree.c
Modified: src/modules/ims_registrar_pcscf/sec_agree.h
…
[View More]
---
Diff: https://github.com/kamailio/kamailio/commit/7326e7233890db9877992fda7ce8e96…
Patch: https://github.com/kamailio/kamailio/commit/7326e7233890db9877992fda7ce8e96…
---
diff --git a/src/modules/ims_registrar_pcscf/sec_agree.c b/src/modules/ims_registrar_pcscf/sec_agree.c
index f10c29f37b..18b9a806b6 100644
--- a/src/modules/ims_registrar_pcscf/sec_agree.c
+++ b/src/modules/ims_registrar_pcscf/sec_agree.c
@@ -1,3 +1,24 @@
+/**
+ * Copyright (C) 2017 kamailio.org
+ *
+ * This file is part of Kamailio, a free SIP server.
+ *
+ * Kamailio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version
+ *
+ * Kamailio is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
#include "sec_agree.h"
#include "../../core/str.h"
diff --git a/src/modules/ims_registrar_pcscf/sec_agree.h b/src/modules/ims_registrar_pcscf/sec_agree.h
index 6485ffe105..75443bdc18 100644
--- a/src/modules/ims_registrar_pcscf/sec_agree.h
+++ b/src/modules/ims_registrar_pcscf/sec_agree.h
@@ -1,3 +1,24 @@
+/**
+ * Copyright (C) 2017 kamailio.org
+ *
+ * This file is part of Kamailio, a free SIP server.
+ *
+ * Kamailio is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version
+ *
+ * Kamailio is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
#ifndef SEC_AGREE_H
#define SEC_AGREE_H
[View Less]
Module: kamailio
Branch: master
Commit: 6457634c963c0f65aaf4f3ce6573490609637f74
URL: https://github.com/kamailio/kamailio/commit/6457634c963c0f65aaf4f3ce6573490…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2017-09-21T16:41:41+02:00
kex: more details about rpc stats.fetch output
---
Modified: src/modules/kex/doc/kex_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/…
[View More]6457634c963c0f65aaf4f3ce6573490…
Patch: https://github.com/kamailio/kamailio/commit/6457634c963c0f65aaf4f3ce6573490…
---
diff --git a/src/modules/kex/doc/kex_admin.xml b/src/modules/kex/doc/kex_admin.xml
index 902261e146..539ef08d2a 100644
--- a/src/modules/kex/doc/kex_admin.xml
+++ b/src/modules/kex/doc/kex_admin.xml
@@ -752,7 +752,10 @@ resetdebug();
<title>
<function moreinfo="none">stats.fetch</function>
</title>
- <para>Print the list of available internal statistics.</para>
+ <para>Print the list of available internal statistics with a more
+ json friendly output. Each printed statistic is a field in the output
+ structure: {"statsgroup.statsname" : "statsvalue"}. The value is
+ represented as string to accomodate large numbers.</para>
<para>Parameters: <emphasis>statsid</emphasis> - which statistics to
be printed. If set to 'all' then all statistics are printed; if
set to 'statsgroup:' then all statistics in the group are printed;
[View Less]
Module: kamailio
Branch: master
Commit: 40273d15a4bf574da1b31d9a5ec4be7c4b6eb879
URL: https://github.com/kamailio/kamailio/commit/40273d15a4bf574da1b31d9a5ec4be7…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2017-09-21T16:36:59+02:00
kex: documentation for rpc stats.fetch
---
Modified: src/modules/kex/doc/kex_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/40273d15a4bf574da1b31d9a5ec4be7……
[View More]
Patch: https://github.com/kamailio/kamailio/commit/40273d15a4bf574da1b31d9a5ec4be7…
---
diff --git a/src/modules/kex/doc/kex_admin.xml b/src/modules/kex/doc/kex_admin.xml
index 7eabc02160..902261e146 100644
--- a/src/modules/kex/doc/kex_admin.xml
+++ b/src/modules/kex/doc/kex_admin.xml
@@ -748,6 +748,26 @@ resetdebug();
&kamcmd; stats.get_statistics shmem: fwd_requests fwd_replies
</programlisting>
</section>
+ <section id="kex.r.stats.fetch">
+ <title>
+ <function moreinfo="none">stats.fetch</function>
+ </title>
+ <para>Print the list of available internal statistics.</para>
+ <para>Parameters: <emphasis>statsid</emphasis> - which statistics to
+ be printed. If set to 'all' then all statistics are printed; if
+ set to 'statsgroup:' then all statistics in the group are printed;
+ if set to 'statsname' then the statistics identified by the name
+ is printed (can be also 'statsgroup.stastname' or
+ 'statsgroup:statsname').</para>
+ <para>Examples:</para>
+ <programlisting format="linespecific">
+ &kamcmd; stats.fetch all
+ &kamcmd; stats.fetch core:
+ &kamcmd; stats.fetch unsupported_methods
+ &kamcmd; stats.fetch shmem.free_size
+ &kamcmd; stats.fetch shmem: fwd_requests fwd_replies
+ </programlisting>
+ </section>
<section id="kex.r.stats.reset_statistics">
<title>
<function moreinfo="none">stats.reset_statistics</function>
[View Less]
<!-- Kamailio Pull Request Template -->
<!--
IMPORTANT:
- for detailed contributing guidelines, read:
https://github.com/kamailio/kamailio/blob/master/.github/CONTRIBUTING.md
- pull requests must be done to master branch, unless they are backports
of fixes from master branch to a stable branch
- backports to stable branches must be done with 'git cherry-pick -x ...'
- code is contributed under BSD for core and main components (tm, sl, auth, tls)
- code is contributed …
[View More]GPLv2 or a compatible license for the other components
- GPL code is contributed with OpenSSL licensing exception
-->
#### Pre-Submission Checklist
<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply -->
<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above-->
<!-- If you're unsure about any of these, don't hesitate to ask on sr-dev mailing list -->
- [ ] Commit message has the format required by CONTRIBUTING guide
- [ ] Commits are split per component (core, individual modules, libs, utils, ...)
- [ ] Each component has a single commit (if not, squash them into one commit)
- [ ] No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [ ] Small bug fix (non-breaking change which fixes an issue)
- [X] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
<!-- Go over all points below, and after creating the PR, tick the checkboxes that apply -->
- [ ] PR should be backported to stable branches
- [X] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
<!-- Describe your changes in detail -->
In nutshell, this PR adds support for sec-agree parameters parsing in PCSCF.
ims_usrloc_pcscf can store security related parameters from sec-agree extension. However ims_register_pcscf doesn't parse the corresponding SIP headers. This PR adds code, which parses security-client header fields and stores them via ims_usrloc_pcscf.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1238
-- Commit Summary --
* ims_registrar_pcscf: Add support for sec-agree parameters parsing
-- File Changes --
M src/modules/ims_registrar_pcscf/save.c (23)
A src/modules/ims_registrar_pcscf/sec_agree.c (207)
A src/modules/ims_registrar_pcscf/sec_agree.h (16)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1238.patchhttps://github.com/kamailio/kamailio/pull/1238.diff
--
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/1238
[View Less]
#### Pre-Submission Checklist
- [x] Commit message has the format required by CONTRIBUTING guide
- [x] Commits are split per component (core, individual modules, libs, utils, ...)
- [x] Each component has a single commit (if not, squash them into one commit)
- [x] No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [ ] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature …
[View More](non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
- [ ] PR should be backported to stable branches
- [x] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
This scripts will be used for automated docker container builds
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1240
-- Commit Summary --
* pkg/kamailio/alpine: Added packaging script for Alpine dist.
-- File Changes --
A pkg/kamailio/alpine/0001-kamdbctl.base.patch (57)
A pkg/kamailio/alpine/0002-remove-spurious-execinfo.patch (30)
A pkg/kamailio/alpine/0003-src_modules_tls_tls_init_c.patch (131)
A pkg/kamailio/alpine/0004-src_core_tcp_read_c.patch (20)
A pkg/kamailio/alpine/APKBUILD (506)
A pkg/kamailio/alpine/kamailio.cfg (108)
A pkg/kamailio/alpine/kamailio.initd (35)
A pkg/kamailio/alpine/kamailio.pre-install (6)
A pkg/kamailio/alpine/kamailio.pre-upgrade (1)
A pkg/kamailio/alpine/kamctl_build.patch (236)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1240.patchhttps://github.com/kamailio/kamailio/pull/1240.diff
--
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/1240
[View Less]
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1230
-- Commit Summary --
* pkg/kamailio/obs: Removed nonexistend dependency
* pkg/kamailio/centos: Linked CentOS packaging to openSUSE build service SPEC file
-- File Changes --
A pkg/kamailio/centos/6 (1)
D pkg/kamailio/centos/6/README (29)
D pkg/kamailio/centos/6/kamailio.init (134)
D pkg/kamailio/centos/6/kamailio.spec (1279)
D pkg/kamailio/centos/6/…
[View More]kamailio.sysconfig (30)
A pkg/kamailio/centos/7 (1)
D pkg/kamailio/centos/7/README (16)
D pkg/kamailio/centos/7/kamailio.init (141)
D pkg/kamailio/centos/7/kamailio.service (27)
D pkg/kamailio/centos/7/kamailio.spec (1468)
D pkg/kamailio/centos/7/kamailio.sysconfig (30)
D pkg/kamailio/centos/7/kamailio.tmpfiles (1)
M pkg/kamailio/obs/kamailio.service (2)
M pkg/kamailio/obs/kamailio.spec (9)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1230.patchhttps://github.com/kamailio/kamailio/pull/1230.diff
--
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/1230
[View Less]
got these docbook errors today when building latest master on debian
stretch.
-- juha
usr/bin/docbook2x-man -s ../../../doc/stylesheets/serdoc2man.xsl auth.xml
auth.xml:7: warning: failed to load external entity "../../../../doc/docbook/entities.xml"
%docentities;
^
Entity: line 1:
%docentities;
^
auth.xml:25: parser error : Entity 'kamailio' not defined
The <command>auth</command> module of &kamailio; provides basic functional
…
[View More] ^
auth.xml:208: parser error : Entity 'kamailio' not defined
can be divided into several partitions. Each &kamailio; process is assig
^
auth.xml:213: parser error : Entity 'kamailio' not defined
conditions. In the worst case, when only one &kamailio; process receive
^
auth.xml:532: parser error : Entity 'kamailio' not defined
separated by a comma. For challenges generated by &kamailio;, this
^
auth.xml:535: parser error : Entity 'kamailio' not defined
parameter will be present in challenges created by &kamailio;. This may
^
auth.xml:537: parser error : Entity 'kamailio' not defined
make your &kamailio; not comply with RFC 3261.
^
[View Less]