#### 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
- [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:
- [ ] PR should be backported to stable branches
- [x] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
Fixes build `kamailio/kamailio-ci` docker image after released `alpine:3.9`
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1857
-- Commit Summary --
* Revert "pkg/kamailio/alpine: Fixed docker image build for 5.2 branch"
* pkg/kamailio/alpine: Update APKBUILD
* pkg/docker: Alpine switched to use openssl. Updated rules for alpine docker container
* pkg/docker: Updated submodule
-- File Changes --
M pkg/docker (2)
D pkg/kamailio/alpine/0004-src_core_tcp_read_c.patch (20)
M pkg/kamailio/alpine/APKBUILD (18)
M pkg/kamailio/alpine/kamailio.initd (2)
D pkg/kamailio/alpine/kamctl_build.patch (236)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1857.patchhttps://github.com/kamailio/kamailio/pull/1857.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/1857
Module: kamailio
Branch: master
Commit: 409cb202057c89e87d910a1877ce719c6335ebdb
URL: https://github.com/kamailio/kamailio/commit/409cb202057c89e87d910a1877ce719…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2019-02-19T17:37:40+01:00
kamailio.cfg: explicitely set the tcp/tls connections upper limits
- notes about tcp_children and relation with children parameter
---
Modified: etc/kamailio.cfg
---
Diff: https://github.com/kamailio/kamailio/commit/409cb202057c89e87d910a1877ce719…
Patch: https://github.com/kamailio/kamailio/commit/409cb202057c89e87d910a1877ce719…
---
diff --git a/etc/kamailio.cfg b/etc/kamailio.cfg
index db58f98fcb..7462c9cdfd 100644
--- a/etc/kamailio.cfg
+++ b/etc/kamailio.cfg
@@ -158,12 +158,16 @@ memlog=5
log_facility=LOG_LOCAL0
log_prefix="{$mt $hdr(CSeq) $ci} "
-/* number of SIP routing processes */
+/* number of SIP routing processes for each UDP socket
+ * - value inherited by tcp_children and sctp_children when not set explicitely */
children=8
/* uncomment the next line to disable TCP (default on) */
# disable_tcp=yes
+/* number of SIP routing processes for all TCP/TLS sockets */
+# tcp_children=8
+
/* uncomment the next line to disable the auto discovery of local aliases
* based on reverse DNS on IPs (default on) */
# auto_aliases=no
@@ -175,14 +179,20 @@ children=8
* bind on a specific interface/port/proto (default bind on all available) */
# listen=udp:10.0.0.10:5060
-#!ifdef WITH_TLS
-enable_tls=yes
-#!endif
-
/* life time of TCP connection when there is no traffic
* - a bit higher than registration expires to cope with UA behind NAT */
tcp_connection_lifetime=3605
+/* upper limit for TCP connections (it includes the TLS connections) */
+tcp_max_connections=2048
+
+#!ifdef WITH_TLS
+enable_tls=yes
+
+/* upper limit for TLS connections */
+tls_max_connections=2048
+#!endif
+
####### Custom Parameters #########
/* These parameters can be modified runtime via RPC interface
<!-- 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 GPLv2 or a compatible license for the other components
- GPL code is contributed with OpenSSL licensing exception
-->
#### 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 -->
- [ ] PR should be backported to stable branches
- [x] Tested changes locally
- [x] Related to issue #1789
#### Description
<!-- Describe your changes in detail -->
Small fix to proper handling A-F in $sipt(redirection_number)
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1859
-- Commit Summary --
* sipt: $sipt(redirection_number) evaluates the value as a numerical value
-- File Changes --
M src/modules/sipt/ss7_parser.c (4)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1859.patchhttps://github.com/kamailio/kamailio/pull/1859.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/1859