dilyanpalauzov left a comment (kamailio/kamailio#4317)
I found
https://www.kamailio.org/wikidocs/tutorials/cmake/custom/#module_group_name .
Indeed, when I enter invalid name, all possible groups are shown.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamai
dilyanpalauzov left a comment (kamailio/kamailio#4317)
MODULE_GROUP_NAME now can be entered as string. Where are the available group
names documented?
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/4317#issuecomment-3102230249
You are receivin
dilyanpalauzov left a comment (kamailio/kamailio#4318)
> Is the last change in the patch still needed?
>
> ```diff
> -ifeq ($(CC_SHORTVER),$(filter $(CC_SHORTVER),4.2+ 4.5+ 5.0+
> 6.0+ 7.0+ 8.0+ 9.0+))
> +ifeq ($(CC_SHORTVER),$(filter $(CC_SHORTVER),4.2+ 4.5+ 5.0+
@dilyanpalauzov pushed 1 commit.
5343020cad11b54a67786e0cee60f4383ab256f0 Makefile.defs: Avoid warning for gcc
15
--
View it on GitHub:
https://github.com/kamailio/kamailio/pull/4318/files/fcb46c02845bed364237b5dc1fa5846e7dfe36c1..5343020cad11b54a67786e0cee60f4383ab256f0
You are receiving this
@dilyanpalauzov commented on this pull request.
> @@ -1017,7 +1017,7 @@ ifeq($(CC_NAME), gcc)
#common stuff
CFLAGS+=$(CC_OPT) -funroll-loops -Wcast-align
$(PROFILE)
#if gcc 4.5+
-ifeq
@dilyanpalauzov pushed 1 commit.
fcb46c02845bed364237b5dc1fa5846e7dfe36c1 Makefile.defs: Avoid warning for gcc
15
--
View it on GitHub:
https://github.com/kamailio/kamailio/pull/4318/files/90b308d66eab741f3a034b2949ef758e4f6bd297..fcb46c02845bed364237b5dc1fa5846e7dfe36c1
You are receiving this
@dilyanpalauzov commented on this pull request.
> @@ -1017,7 +1017,7 @@ ifeq($(CC_NAME), gcc)
#common stuff
CFLAGS+=$(CC_OPT) -funroll-loops -Wcast-align
$(PROFILE)
#if gcc 4.5+
-ifeq
@dilyanpalauzov commented on this pull request.
> @@ -1017,7 +1017,7 @@ ifeq($(CC_NAME), gcc)
#common stuff
CFLAGS+=$(CC_OPT) -funroll-loops -Wcast-align
$(PROFILE)
#if gcc 4.5+
-ifeq
@dilyanpalauzov commented on this pull request.
> @@ -1017,7 +1017,7 @@ ifeq($(CC_NAME), gcc)
#common stuff
CFLAGS+=$(CC_OPT) -funroll-loops -Wcast-align
$(PROFILE)
#if gcc 4.5+
-ifeq
dilyanpalauzov left a comment (kamailio/kamailio#4317)
I consider these NO_… OFF options as confusing, as they involve double
negations. Some people, depending on their native language, can consider
double negation to mean single negation. Is with NO_A=OFF support for A
enabled or disabled?
dilyanpalauzov left a comment (kamailio/kamailio#4321)
https://kamailio.org/docs/modules/devel/modules/dialog.html#dialog.f.dlg_manage
says for `dlg_manage()`:
> It is an alternative to setting dialog flag for initial INVITE and
> Route-parameter-callback execution for within-dialog requests.
@dilyanpalauzov pushed 1 commit.
944162bfcd01a01b3a72006079931cd13160bb97 dialog: use capital letter at start
of sentence
--
View it on GitHub:
https://github.com/kamailio/kamailio/pull/4320/files/5ac538b8e4dfcf99a02ab777fef6f5ed817365d5..944162bfcd01a01b3a72006079931cd13160bb97
You are receiv
dilyanpalauzov created an issue (kamailio/kamailio#4321)
With Kamailio 5.8 this worked:
```
FLT_DIALOG=10
modparam("dialog", "dlg_flag", FLT_DIALOG)
```
In version 6.0 it produces an error:
```
0(1) ERROR: [core/modparam.c:187]: set_mod_param_regex(): parameter
of type <2:int> not found in mod
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/4320
-- Commit Summary --
* dialog: use capital letter at start of sentence
-- File Changes --
M src/modules/dialog/README (2)
M src/modules/dialog/doc/dialog_admin.xml (4)
-
dilyanpalauzov left a comment (kamailio/kamailio#4319)
I do not know what prefix to use here.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/4319#issuecomment-3066776231
You are receiving this because you are subscribed to this thread.
Message ID
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/4319
-- Commit Summary --
* Remove some references to CVS and SVN
-- File Changes --
M INSTALL (2)
M doc/doxygen/ser.doxygen (3)
M src/Makefile (7)
M src/lib/Makefile
dilyanpalauzov left a comment (kamailio/kamailio#4318)
I give up:
```
Run /home/runner/work/kamailio/kamailio/actions/.github/scripts/check-commit.sh
>From https://github.com/kamailio/kamailio
* branchmaster -> FETCH_HEAD
* [new branch] master -> origin/master
Checking 1
With gcc --version
```
$ gcc --version
gcc (GCC) 15.1.1 20250521 (Red Hat 15.1.1-2)
Copyright (C) 2025 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
```
this avoid
dilyanpalauzov created an issue (kamailio/kamailio#4317)
In the 6.0 branch the FLAVOUR option allows in cmake-gui (ccmake) setting
`kamailio` as only option. As it is no-op, it should not be displayed in
cmake-gui.
The option MODULE_GROUP_NAME is documented as „Group of modules to build (one
@dilyanpalauzov commented on this pull request.
> @@ -1833,6 +1847,23 @@ ip_addr_t *str2ip(str *st)
return ipb;
}
+struct hostent *__resolvehost(char *name)
+{
+ if(dns_cache_init) {
+ return dns_resolvehost(name);
+ } else {
+ return _resolveho
@dilyanpalauzov commented on this pull request.
> @@ -1623,7 +1623,12 @@ struct hostent *no_naptr_srv_sip_resolvehost(
srv_name.s = tmp_srv;
srv_name.len = strlen(tmp_srv);
#ifdef USE_DNS_CACHE
- he = dns_srv_get_he(&srv_name
I meant that in the past on 5.6 branch with my configuration Kamailio has not
crashed immediately after start. Kamailio 5.8 crashes immediately after start.
With your first version of the patch Kamailio does not crash anymore
immediately after start.
The problem report here is that Kamailio 5
Thank you very much for looking into this!
The setup I had in the past, six months ago, with 5.7, has connected me to
+437200101012.
When dns_cache_init=off without this patch applied on the 5.8 branch, with the
configuration files I have, Kamailio crashes more or less immediately after it
is
With Kamailio 5.8 it still crashes. I use in the meantime the bytecode of
luajit as KEMI.
kamailio.cfg
#.x!xKAMAILI2O
# *** To enable presence server execute:
# - define WITH_PRESENCE
# - if modified headers or body in config must be used by presence handling:
# - define WITH_MSGREB
similar to 87ed3d9c3ae3ecfabe6
GCC 14 will be released in April or May 2024. Adding this now will avoid
backporting the change to the 5.8 branch. (Not that 87ed3d9c3ae3ecfabe6 was
backported to 5.7.)
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/
@dilyanpalauzov commented on this pull request.
I think the line above LM_ERROR is bettet than LM_INFO.
> @@ -295,7 +295,7 @@ static int mod_init(void)
if(load_tm_api(&tmb) < 0) {
LM_INFO("cannot load the TM-functions - async relay
disabled\n");
- memset(&
/notexpired
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/3350#issuecomment-1837147025
You are receiving this because you are subscribed to this thread.
Message ID: ___
Kamailio (SER) - Development Ma
> I guess the option of the reporter to reopen the issue/pr is still available.
I do not see such option.
Currently the only way to prevent automatic closing is to write (probably
periodically) any text.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio
> An issue or PR marked `stale` can have the label removed by reporter…
This is not correct.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3475#issuecomment-1826889285
You are receiving this because you are subscribed to this thread.
Message ID:
> From that point of view, I think it is fair that the reporter reacts on a
> stale or close notification and indicate that the issue is still there or the
> PR is still relevant.
Writing repeatedly any text just for the sake of keeping a ticket open does not
help anyhow.
--
Reply to this ema
Closing valid bugs, without fixing the real problem, results very few current
reports for real problems in the software.
This practice leads to the wrong impression, that Kamailio has no known
problems, and therefore is good software.
This is misleading and nobody has interest in having such mi
The proposed here change does fix problems (warnings). I object that this PR
is closed, instead of fixing the underlying warnings by the suggested or other
ways.
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3475#issuecomment-1826776355
You are
At https://www.kamailio.org/docs/modules/devel/ is spelled
CALL_CONTROL | Conector to call_control application
-- | --
EVREXEC | Execut event routes at startup on dedicated processes
It shall be co**NN**ector and execut**E**.
Likewise for https://www.kamailio.org/docs/modules/5.8.x/ ,
https://w
A while ago I wanted to adjust my Lua configuration to work with rtpengine and
I have adjusted this example accordingly. I have not tried the example, but if
there are no obvious bugs with it, I think it will be useful.
You can view, comment on, or merge this pull request online at:
https://
34 matches
Mail list logo