Creating an empty file `src/modules/topos_htable/README` allows the installation to complete without errors.
```
$ ninja install
[..]
CMake Error at src/modules/cmake_install.cmake:1588 (file):
file INSTALL cannot find
"/usr/src/kamailio/src/modules/topos_htable/README":
No such file or directory.
Call Stack (most recent call first):
src/cmake_install.cmake:96 (include)
cmake_install.cmake:47 (include)
FAILED: CMakeFiles/install.util
cd /usr/src/kamailio/build && /usr/bin/cmake -P cmake_install.cmake
ninja: build stopped: subcommand failed.
$ touch ../src/modules/topos_htable/README && ninja install && echo $?
[..]
0
```
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/4095
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/4095(a)github.com>
Module: kamailio
Branch: master
Commit: fc182198c7182759cc2c10b4afa3569336a438c9
URL: https://github.com/kamailio/kamailio/commit/fc182198c7182759cc2c10b4afa3569…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2025-01-03T12:02:21+01:00
presence_dfks: added README file
- initial import, it is going to be autmatically generated from now on
---
Added: src/modules/presence_dfks/README
---
Diff: https://github.com/kamailio/kamailio/commit/fc182198c7182759cc2c10b4afa3569…
Patch: https://github.com/kamailio/kamailio/commit/fc182198c7182759cc2c10b4afa3569…
---
diff --git a/src/modules/presence_dfks/README b/src/modules/presence_dfks/README
new file mode 100644
index 00000000000..d965a6e4c6a
--- /dev/null
+++ b/src/modules/presence_dfks/README
@@ -0,0 +1,78 @@
+presence_dfks Module
+
+Maja Stanislawska
+
+ <maja.stanislawska(a)yahoo.com>
+
+Victor Seva
+
+ Sipwise GmbH
+ <vseva(a)sipwise.com>
+
+Edited by
+
+Victor Seva
+
+ Sipwise GmbH
+ <vseva(a)sipwise.com>
+
+ Copyright �� 2014 Maja Stanislawska
+
+ Copyright �� 2024 Victor Seva
+ __________________________________________________________________
+
+ Table of Contents
+
+ 1. Admin Guide
+
+ 1. Overview
+ 2. Dependencies
+
+ 2.1. Kamailio Modules
+ 2.2. External Libraries or Applications
+
+ 3. Parameters
+
+Chapter 1. Admin Guide
+
+ Table of Contents
+
+ 1. Overview
+ 2. Dependencies
+
+ 2.1. Kamailio Modules
+ 2.2. External Libraries or Applications
+
+ 3. Parameters
+
+1. Overview
+
+ This module for handling as-feature-event presence messages Provides
+ support for 'Device FeatureKey Synchronization', as described in
+ http://community.polycom.com/polycom/attachments/polycom/VoIP/2233/1/De
+ viceFeatureKeySynchronizationFD.pdf This 'protocol' was developed at
+ Broadsoft, and is used in Linksys/Cisco and Polycom phones and probably
+ some other too. It allows to set up features like dnd (No Not Disturb)
+ and call forwarding using phone interface and have that status updated
+ on aplication server/ proxy or otherway, set those features on
+ aplication server using some gui, and have this data provisioned on
+ phone. For Shared Line Appreance application this let You share status
+ on all phones.
+
+2. Dependencies
+
+ 2.1. Kamailio Modules
+ 2.2. External Libraries or Applications
+
+2.1. Kamailio Modules
+
+ The following modules must be loaded before this module:
+ * sl. presence. pua.
+
+2.2. External Libraries or Applications
+
+ The following libraries or applications must be installed before
+ running Kamailio with this module loaded:
+ * libxml2 - xml handling library.
+
+3. Parameters
Module: kamailio
Branch: master
Commit: 2692148d92bb8b17709eb4cbddd8e653bbf5c14a
URL: https://github.com/kamailio/kamailio/commit/2692148d92bb8b17709eb4cbddd8e65…
Author: Xenofon Karamanos <xk(a)gilawa.com>
Committer: Xenofon Karamanos <xk(a)gilawa.com>
Date: 2024-12-30T15:57:40Z
cmake: Install README from source tree
- module_name_doc target will only produce the formats found in the build folder.
- module_name_readme target that modifies the source tree needs to be called explicitly
---
Modified: cmake/modules-docs.cmake
---
Diff: https://github.com/kamailio/kamailio/commit/2692148d92bb8b17709eb4cbddd8e65…
Patch: https://github.com/kamailio/kamailio/commit/2692148d92bb8b17709eb4cbddd8e65…
---
diff --git a/cmake/modules-docs.cmake b/cmake/modules-docs.cmake
index b24ae061af2..edd7e8451d7 100644
--- a/cmake/modules-docs.cmake
+++ b/cmake/modules-docs.cmake
@@ -95,7 +95,6 @@ function(docs_add_module module_name)
add_custom_target(
${module_name}_doc
DEPENDS ${module_name}_doc_text ${module_name}_doc_html
- ${module_name}_readme
COMMENT "Processing target ${module_name}_doc")
# Each version has seperate custon commands for not recompiling all if 1 gets
@@ -146,13 +145,9 @@ function(docs_add_module module_name)
endif()
install(
- FILES ${CMAKE_CURRENT_BINARY_DIR}/${module_name}/${module_name}.txt
+ FILES ${CMAKE_CURRENT_SOURCE_DIR}/${module_name}/README
RENAME README.${module_name}
DESTINATION ${CMAKE_INSTALL_DOCDIR}/modules
- COMPONENT kamailio_docs
- # Since the depepndencies might not have been build as they are not in the
- # default target and required to build explicitly using `make
- # kamailio_docs`, allow them to be optional.
- OPTIONAL)
+ COMPONENT kamailio_docs)
endif()
endfunction()
Module: kamailio
Branch: master
Commit: ad35c24196c921a3e870f4a48b6d286748d78d48
URL: https://github.com/kamailio/kamailio/commit/ad35c24196c921a3e870f4a48b6d286…
Author: Xenofon Karamanos <xk(a)gilawa.com>
Committer: Xenofon Karamanos <xk(a)gilawa.com>
Date: 2024-12-30T15:48:15Z
cmake: Update min version required to 3.10
---
Modified: cmake/compiler-specific.cmake
Modified: cmake/defs.cmake
Modified: cmake/os-specific.cmake
Modified: src/modules/CMakeLists.txt
Modified: src/modules/presence/CMakeLists.txt
Modified: src/modules/presence_xml/CMakeLists.txt
Modified: utils/kamctl/CMakeLists.txt
---
Diff: https://github.com/kamailio/kamailio/commit/ad35c24196c921a3e870f4a48b6d286…
Patch: https://github.com/kamailio/kamailio/commit/ad35c24196c921a3e870f4a48b6d286…
---
diff --git a/cmake/compiler-specific.cmake b/cmake/compiler-specific.cmake
index 7ecd87b75ad..950b64941ab 100644
--- a/cmake/compiler-specific.cmake
+++ b/cmake/compiler-specific.cmake
@@ -2,7 +2,6 @@
# common flags and options for the project The flags are defined as INTERFACE
# properties of the common library The flags are then used by the other
# libraries and executables
-cmake_minimum_required(VERSION 3.10)
# Define the common flags and options for GCC
option(PROFILE "Enable profiling" OFF)
diff --git a/cmake/defs.cmake b/cmake/defs.cmake
index bc08b2ce4ac..a01a43eaf65 100644
--- a/cmake/defs.cmake
+++ b/cmake/defs.cmake
@@ -2,7 +2,6 @@
# common flags and options for the project The flags are defined as INTERFACE
# properties of the common library The flags are then used by the other
# libraries and executables
-cmake_minimum_required(VERSION 3.10)
add_library(common INTERFACE)
diff --git a/cmake/os-specific.cmake b/cmake/os-specific.cmake
index 7fbbd4763a2..d70a44cf379 100644
--- a/cmake/os-specific.cmake
+++ b/cmake/os-specific.cmake
@@ -1,8 +1,7 @@
-# Quite analogous to the Makefile.defs file
-# This file is used to define the common flags and options for the project
-# The flags are defined as INTERFACE properties of the common library
-# The flags are then used by the other libraries and executables
-cmake_minimum_required(VERSION 3.10)
+# Quite analogous to the Makefile.defs file This file is used to define the
+# common flags and options for the project The flags are defined as INTERFACE
+# properties of the common library The flags are then used by the other
+# libraries and executables
set(OS_SPECIFIC_DIR "${CMAKE_SOURCE_DIR}/cmake/os-specific")
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
diff --git a/src/modules/CMakeLists.txt b/src/modules/CMakeLists.txt
index a1b474a4502..6570b4afdf2 100644
--- a/src/modules/CMakeLists.txt
+++ b/src/modules/CMakeLists.txt
@@ -73,6 +73,7 @@ function(add_module_group group_modules)
if(POLICY CMP0079)
cmake_policy(SET CMP0079 NEW)
endif()
+
target_link_libraries(${module_name} PRIVATE common_modules)
target_compile_definitions(
${module_name} PRIVATE MOD_NAMEID=${module_name}
diff --git a/src/modules/presence/CMakeLists.txt b/src/modules/presence/CMakeLists.txt
index dbac5d4862e..ef19545fcb2 100644
--- a/src/modules/presence/CMakeLists.txt
+++ b/src/modules/presence/CMakeLists.txt
@@ -1,6 +1,3 @@
-# 3.12 For libxml2 target
-cmake_minimum_required(VERSION 3.12)
-
file(GLOB MODULE_SOURCES "*.c")
add_library(${module_name} SHARED ${MODULE_SOURCES})
diff --git a/src/modules/presence_xml/CMakeLists.txt b/src/modules/presence_xml/CMakeLists.txt
index dbac5d4862e..ef19545fcb2 100644
--- a/src/modules/presence_xml/CMakeLists.txt
+++ b/src/modules/presence_xml/CMakeLists.txt
@@ -1,6 +1,3 @@
-# 3.12 For libxml2 target
-cmake_minimum_required(VERSION 3.12)
-
file(GLOB MODULE_SOURCES "*.c")
add_library(${module_name} SHARED ${MODULE_SOURCES})
diff --git a/utils/kamctl/CMakeLists.txt b/utils/kamctl/CMakeLists.txt
index 2b017836025..75208d63222 100644
--- a/utils/kamctl/CMakeLists.txt
+++ b/utils/kamctl/CMakeLists.txt
@@ -1,5 +1,3 @@
-cmake_minimum_required(VERSION 3.10)
-
project(kamailio_utils)
# if(NOT basedir) set(KAMCTL_TMP_DIR "/tmp") else() set(KAMCTL_TMP_DIR
<!-- 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
-->
#### 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
- [ ] 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
##### **Summary**
This update introduces new functionality to the `secfilter` module, enabling the removal of entries from both the Blacklist and Whitelist. It also includes automatic detection and removal of duplicate values from these lists.
##### **Details**
* Users can now remove specific entries from the Blacklist or Whitelist based on type (e.g., IP, domain, user) and a given value.
* Supports removal of single or multiple matching entries in one operation.
##### **Benefits**
- Improves the usability and flexibility of the `secfilter` module by allowing fine-grained control over list management.
- Ensures that the Blacklist and Whitelist are kept clean and free from redundant entries.
- Enhances performance by reducing unnecessary duplication in the lists.
##### Testing
This feature was tested using `kmcmd` commands in various scenarios:
- Removing the **first element** in the list.
- Removing an element from the **middle** of the list.
- Removing the **last element** in the list.
- Removing **all matching elements** in the list.
In all cases, the commands worked correctly, and the lists were updated and cleaned as expected.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/4086
-- Commit Summary --
* secfilter: support remove rule in Whitelist and Blacklist
* Merge remote-tracking branch 'origin/master' into Feature/5-support-remove-rule-in-Whitelist-Blacklist
* secfilter: support remove rule in Whitelist and Blacklist
* edit end of file
-- File Changes --
M src/modules/secfilter/secfilter.c (8)
M src/modules/secfilter/secfilter.h (3)
M src/modules/secfilter/secfilter_db.c (106)
M src/modules/secfilter/secfilter_rpc.c (94)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/4086.patchhttps://github.com/kamailio/kamailio/pull/4086.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/4086
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/4086(a)github.com>
I noticed at least two styles of CMakeLists.txt for modules:
```
❯ cat src/modules/acc/CMakeLists.txt
file(GLOB acc_SRC "*.c")
add_library(acc SHARED ${acc_SRC})
```
and
```
❯ cat src/modules/xlog/CMakeLists.txt
file(GLOB SRC_FILES "*.c")
add_library(xlog SHARED ${SRC_FILES})
# # target_link_libraries(.*PRIVATE)
```
Which one should be used? The one with `modname_SRC` (e.g., `acc_SRC`) or the one with `SRC_FILES`?
Also, I guess that the comment with `target_link_libraries()` can be removed.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/4081
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/4081(a)github.com>
### Description
ping @xkaraman
cmake is overriding distro build flags
Here is typical CFLAGS for EL distros
```
export CFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection'
## try to build
cd build/
make
[ 1%] Building C object src/CMakeFiles/kamailio.dir/lib/srdb1/db_row.c.o
In file included from /usr/include/bits/libc-header-start.h:33,
from /usr/include/string.h:26,
from /home/centos/src/kamailio-5.8/src/lib/srdb1/../../core/str.h:26,
from /home/centos/src/kamailio-5.8/src/lib/srdb1/db_con.h:33,
from /home/centos/src/kamailio-5.8/src/lib/srdb1/db_val.h:40,
from /home/centos/src/kamailio-5.8/src/lib/srdb1/db_row.h:37,
from /home/centos/src/kamailio-5.8/src/lib/srdb1/db_row.c:33:
/usr/include/features.h:412:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
412 | # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
```
It is probably due to `cmake/compiler-specific.cmake`:
```
# If GCC version is greater than 4.2.0, enable the following flags
if(CMAKE_C_COMPILER_VERSION VERSION_GREATER 4.2.0)
target_compile_options(
common INTERFACE -m64 -minline-all-stringops -falign-loops
-ftree-vectorize -fno-strict-overflow -mtune=generic
)
endif()
```
Packaging for ELx requires respecting the default flags - for EL9 included here for reference
```
CFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection'
CXXFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection'
FCFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -I/usr/lib64/gfortran/modules'
FFLAGS='-O2 -flto=auto -ffat-lto-objects -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -specs=/usr/lib/rpm/redhat/redhat-hardened-cc1 -fstack-protector-strong -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 -m64 -march=x86-64-v2 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -I/usr/lib64/gfortran/modules'
LDFLAGS='-Wl,-z,relro -Wl,--as-needed -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld -specs=/usr/lib/rpm/redhat/redhat-annobin-cc1 '
```
ELx packaging typically involves this dance:
```
# in practice RPM build tools have macros for all the following steps
# use standard distro flags
export CFLAGS=....
export CXXFLAGS=...
export LDFLAGS=....
./configure
```
Is there a way we can respect distro build flags with cmake?
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/4082
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/4082(a)github.com>
<!--
Kamailio Project uses GitHub Issues only for bugs in the code or feature requests. Please use this template only for bug reports.
If you have questions about using Kamailio or related to its configuration file, ask on sr-users mailing list:
* https://lists.kamailio.org/mailman3/postorius/lists/sr-users.lists.kamailio…
If you have questions about developing extensions to Kamailio or its existing C code, ask on sr-dev mailing list:
* https://lists.kamailio.org/mailman3/postorius/lists/sr-dev.lists.kamailio.o…
Please try to fill this template as much as possible for any issue. It helps the developers to troubleshoot the issue.
Note that an issue report may be closed automatically after about 2 months
if there is no interest from developers or community users on pursuing it, being
considered expired. In such case, it can be reopened by writing a comment that includes
the token `/notexpired`. About two weeks before considered expired, the issue is
marked with the label `stale`, trying to notify the submitter and everyone else
that might be interested in it. To remove the label `stale`, write a comment that
includes the token `/notstale`. Also, any comment postpone the `expire` timeline,
being considered that there is interest in pursuing the issue.
If there is no content to be filled in a section, the entire section can be removed.
You can delete the comments from the template sections when filling.
You can delete next line and everything above before submitting (it is a comment).
-->
### Description
<!--
Explain what you did, what you expected to happen, and what actually happened.
-->
`$shtcn` (and probably also `$shtcv`, but not tested) includes expired entries in count until `timer` process removes expired items.
### Troubleshooting
#### Reproduction
<!--
If the issue can be reproduced, describe how it can be done.
-->
```
#!KAMAILIO
listen=udp:127.0.0.1:9999
log_stderror=yes
loadmodule "xlog.so"
loadmodule "pv.so"
loadmodule "sl.so"
loadmodule "htable.so"
modparam("htable", "htable", "foo=>autoexpire=1;updateexpire=0")
request_route {
$sht(foo=>bar-$Ts) = 1;
xlog("$Ts count $shtcn(foo=>%~bar-)\n");
sl_send_reply("200", "Hello");
}
```
```
while true; do sleep 0.3; sipsak -vs sip:localhost:9999 ; done
```
#### Log Messages
<!--
Check the syslog file and if there are relevant log messages printed by Kamailio, add them next, or attach to issue, or provide a link to download them (e.g., to a pastebin site).
-->
```
0(1415871) ERROR: <script>: 1734540011 count 1
0(1415871) ERROR: <script>: 1734540012 count 2
0(1415871) ERROR: <script>: 1734540012 count 2
0(1415871) ERROR: <script>: 1734540012 count 2
0(1415871) ERROR: <script>: 1734540013 count 3
0(1415871) ERROR: <script>: 1734540013 count 3
0(1415871) ERROR: <script>: 1734540013 count 3
0(1415871) ERROR: <script>: 1734540014 count 4
0(1415871) ERROR: <script>: 1734540014 count 4
0(1415871) ERROR: <script>: 1734540014 count 4
0(1415871) ERROR: <script>: 1734540015 count 5
0(1415871) ERROR: <script>: 1734540015 count 5
0(1415871) ERROR: <script>: 1734540015 count 5
0(1415871) ERROR: <script>: 1734540016 count 6
0(1415871) ERROR: <script>: 1734540016 count 6
0(1415871) ERROR: <script>: 1734540016 count 6
0(1415871) ERROR: <script>: 1734540016 count 6
0(1415871) ERROR: <script>: 1734540017 count 7
0(1415871) ERROR: <script>: 1734540017 count 7
0(1415871) ERROR: <script>: 1734540017 count 7
0(1415871) ERROR: <script>: 1734540018 count 8
0(1415871) ERROR: <script>: 1734540018 count 8
0(1415871) ERROR: <script>: 1734540018 count 8
0(1415871) ERROR: <script>: 1734540019 count 9
0(1415871) ERROR: <script>: 1734540019 count 9
0(1415871) ERROR: <script>: 1734540019 count 9
0(1415871) ERROR: <script>: 1734540020 count 10
0(1415871) ERROR: <script>: 1734540020 count 10
0(1415871) ERROR: <script>: 1734540020 count 10
0(1415871) ERROR: <script>: 1734540021 count 11
0(1415871) ERROR: <script>: 1734540021 count 11
0(1415871) ERROR: <script>: 1734540021 count 11
0(1415871) ERROR: <script>: 1734540022 count 12
0(1415871) ERROR: <script>: 1734540022 count 12
0(1415871) ERROR: <script>: 1734540022 count 12
0(1415871) ERROR: <script>: 1734540023 count 13
0(1415871) ERROR: <script>: 1734540023 count 13
0(1415871) ERROR: <script>: 1734540023 count 13
0(1415871) ERROR: <script>: 1734540024 count 14
0(1415871) ERROR: <script>: 1734540024 count 14
0(1415871) ERROR: <script>: 1734540024 count 14
0(1415871) ERROR: <script>: 1734540025 count 15
0(1415871) ERROR: <script>: 1734540025 count 15
0(1415871) ERROR: <script>: 1734540025 count 15
0(1415871) ERROR: <script>: 1734540026 count 16
0(1415871) ERROR: <script>: 1734540026 count 16
0(1415871) ERROR: <script>: 1734540026 count 16
0(1415871) ERROR: <script>: 1734540026 count 16
0(1415871) ERROR: <script>: 1734540027 count 17
0(1415871) ERROR: <script>: 1734540027 count 17
0(1415871) ERROR: <script>: 1734540027 count 17
0(1415871) ERROR: <script>: 1734540028 count 18
0(1415871) ERROR: <script>: 1734540028 count 2
0(1415871) ERROR: <script>: 1734540028 count 2
0(1415871) ERROR: <script>: 1734540029 count 3
0(1415871) ERROR: <script>: 1734540029 count 3
0(1415871) ERROR: <script>: 1734540029 count 3
0(1415871) ERROR: <script>: 1734540030 count 4
0(1415871) ERROR: <script>: 1734540030 count 4
0(1415871) ERROR: <script>: 1734540030 count 4
0(1415871) ERROR: <script>: 1734540031 count 5
0(1415871) ERROR: <script>: 1734540031 count 5
0(1415871) ERROR: <script>: 1734540031 count 5
0(1415871) ERROR: <script>: 1734540032 count 6
```
### Additional Information
* **Kamailio Version** - output of `kamailio -v`
```
% /usr/sbin/kamailio -V
version: kamailio 5.8.4 (x86_64/linux)
flags: USE_TCP, USE_TLS, USE_SCTP, TLS_HOOKS, USE_RAW_SOCKS, DISABLE_NAGLE, USE_MCAST, DNS_IP_HACK, SHM_MMAP, PKG_MALLOC, MEM_JOIN_FREE, Q_MALLOC, F_MALLOC, TLSF_MALLOC, DBG_SR_MEMORY, USE_FUTEX, FAST_LOCK-ADAPTIVE_WAIT, USE_DNS_CACHE, USE_DNS_FAILOVER, USE_NAPTR, USE_DST_BLOCKLIST, HAVE_RESOLV_RES, TLS_PTHREAD_MUTEX_SHARED
ADAPTIVE_WAIT_LOOPS 1024, MAX_RECV_BUFFER_SIZE 262144, MAX_SEND_BUFFER_SIZE 262144, MAX_URI_SIZE 1024, BUF_SIZE 65535, DEFAULT PKG_SIZE 8MB
poll method support: poll, epoll_lt, epoll_et, sigio_rt, select.
id: unknown
compiled with gcc 12.2.0
```
* **Operating System**:
<!--
Details about the operating system, the type: Linux (e.g.,: Debian 8.4, Ubuntu 16.04, CentOS 7.1, ...), MacOS, xBSD, Solaris, ...;
Kernel details (output of `lsb_release -a` and `uname -a`)
-->
```
% cat /etc/os-release
PRETTY_NAME="Debian GNU/Linux 12 (bookworm)"
NAME="Debian GNU/Linux"
VERSION_ID="12"
VERSION="12 (bookworm)"
VERSION_CODENAME=bookworm
ID=debian
```
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/4080
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/4080(a)github.com>
[TOP~RANK] Oleksandr Usyk vs Tyson Fury 2 Live Streams@𝚁eddiT in Home free?
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/4083
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/issues/4083(a)github.com>