[sr-dev] git:master:c88e65ed: rtpengine: rebuild sockets if any skipped nodes
Henning Westerholt
hw at skalatan.de
Wed Feb 17 17:21:28 CET 2021
Module: kamailio
Branch: master
Commit: c88e65edf05f7e61826831a2f7528edbc184f68b
URL: https://github.com/kamailio/kamailio/commit/c88e65edf05f7e61826831a2f7528edbc184f68b
Author: Stefan Mititelu <stefan-cristian.mititelu at 1and1.ro>
Committer: Henning Westerholt <hw at skalatan.de>
Date: 2021-02-17T17:21:22+01:00
rtpengine: rebuild sockets if any skipped nodes
Retry build_rtpp_socks() if any DNS or create, bind, connect
issues happened when kamailio started, and at least one node
from list was skipped.
This retry will happen automatically, when select_rtpp_node() is called
and will avoid a need for a "kamcmd rtpengine.reload"
---
Modified: src/modules/rtpengine/rtpengine.c
---
Diff: https://github.com/kamailio/kamailio/commit/c88e65edf05f7e61826831a2f7528edbc184f68b.diff
Patch: https://github.com/kamailio/kamailio/commit/c88e65edf05f7e61826831a2f7528edbc184f68b.patch
---
diff --git a/src/modules/rtpengine/rtpengine.c b/src/modules/rtpengine/rtpengine.c
index 00b27be148..8b751eb48a 100644
--- a/src/modules/rtpengine/rtpengine.c
+++ b/src/modules/rtpengine/rtpengine.c
@@ -1794,6 +1794,9 @@ static int build_rtpp_socks(int lmode, int rtest) {
if(_rtpe_list_vernum_local == _rtpe_list_version->vernum) {
/* same version for the list of rtpengines */
+ LM_DBG("same rtpengines list version: %d (%u)\n",
+ _rtpe_list_version->vernum,
+ (unsigned int)_rtpe_list_version->vertime);
return 0;
}
@@ -1840,6 +1843,11 @@ static int build_rtpp_socks(int lmode, int rtest) {
if (hostname==NULL) {
LM_ERR("no more pkg memory\n");
rtpp_socks[pnode->idx] = -1;
+
+ /* retry later */
+ _rtpe_list_version->vernum += 1;
+ _rtpe_list_version->vertime = time(NULL);
+
continue;
}
strcpy(hostname, pnode->rn_address);
@@ -1860,6 +1868,11 @@ static int build_rtpp_socks(int lmode, int rtest) {
LM_ERR("%s\n", gai_strerror(n));
pkg_free(hostname);
rtpp_socks[pnode->idx] = -1;
+
+ /* retry later */
+ _rtpe_list_version->vernum += 1;
+ _rtpe_list_version->vertime = time(NULL);
+
continue;
}
pkg_free(hostname);
@@ -1869,6 +1882,11 @@ static int build_rtpp_socks(int lmode, int rtest) {
if (rtpp_socks[pnode->idx] == -1) {
LM_ERR("can't create socket\n");
freeaddrinfo(res);
+
+ /* retry later */
+ _rtpe_list_version->vernum += 1;
+ _rtpe_list_version->vertime = time(NULL);
+
continue;
}
@@ -1899,6 +1917,11 @@ static int build_rtpp_socks(int lmode, int rtest) {
close(rtpp_socks[pnode->idx]);
rtpp_socks[pnode->idx] = -1;
freeaddrinfo(res);
+
+ /* retry later */
+ _rtpe_list_version->vernum += 1;
+ _rtpe_list_version->vertime = time(NULL);
+
continue;
}
@@ -1907,6 +1930,11 @@ static int build_rtpp_socks(int lmode, int rtest) {
close(rtpp_socks[pnode->idx]);
rtpp_socks[pnode->idx] = -1;
freeaddrinfo(res);
+
+ /* retry later */
+ _rtpe_list_version->vernum += 1;
+ _rtpe_list_version->vertime = time(NULL);
+
continue;
}
More information about the sr-dev
mailing list