Hi,
kamailio version - 5.3.3
I have configured rtpproxy in pcscf .
rtpproxy 17002 1 0 18:40 ? 00:00:00 /usr/bin/rtpproxy -s
udp:10.40.10.3 7722 -u rtpproxy rtpproxy -p /var/run/rtpproxy/rtpproxy.pid
-l 10.45.4.22 -d DBUG LOG_LOCAL0
I have configured rtpproxy in kamailio.cfg as well.
modparam("rtpproxy", "rtpproxy_sock", "udp:10.40.10.3:7722")
10.40.10.3 - private IP
10.45.4.22 - public IP
I have enabled NAT configuration also.
When i make a call from zoiper client , rtp packets are going to some other
public ip
Could anyone please help me in this issue.
Kindly help.
Module: kamailio
Branch: master
Commit: 9691f6e0cab48114ef4067a22cc8f9c1efb8944c
URL: https://github.com/kamailio/kamailio/commit/9691f6e0cab48114ef4067a22cc8f9c…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2020-05-04T18:35:00+02:00
core: hash_func.h - use file name specific include guard
---
Modified: src/core/hash_func.h
---
Diff: https://github.com/kamailio/kamailio/commit/9691f6e0cab48114ef4067a22cc8f9c…
Patch: https://github.com/kamailio/kamailio/commit/9691f6e0cab48114ef4067a22cc8f9c…
---
diff --git a/src/core/hash_func.h b/src/core/hash_func.h
index 203e10b1c8..aeb9794bf2 100644
--- a/src/core/hash_func.h
+++ b/src/core/hash_func.h
@@ -13,8 +13,8 @@
* 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
+ * 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
*/
/*!
@@ -26,14 +26,14 @@
-#ifndef _HASH_H
-#define _HASH_H
+#ifndef _HASH_FUNC_H_
+#define _HASH_FUNC_H_
#include "str.h"
#include "hashes.h"
/* always use a power of 2 for hash table size */
-#define T_TABLE_POWER 16
+#define T_TABLE_POWER 16
#define TABLE_ENTRIES (1 << (T_TABLE_POWER))
unsigned int new_hash( str call_id, str cseq_nr );