diff --git a/net/rtpengine/Makefile b/net/rtpengine/Makefile index fdd396c3..65011e24 100644 --- a/net/rtpengine/Makefile +++ b/net/rtpengine/Makefile @@ -9,12 +9,12 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=rtpengine -PKG_VERSION:=10.5.2.6 -PKG_RELEASE:=3 +PKG_VERSION:=10.5.6.3 +PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-mr$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/sipwise/rtpengine/tar.gz/mr$(PKG_VERSION)? -PKG_HASH:=6f6d5cc2ebf27b6361ed2bd2f86a0ca74103503fd1a14af69ed423dba8340bc4 +PKG_HASH:=8ca55bf5ce334668ad278c98dbb9a7a49c97485f5708925936a28ffba5f644e4 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(BUILD_VARIANT)/$(PKG_NAME)-mr$(PKG_VERSION) diff --git a/net/rtpengine/patches/06-fix-compilation-with-iptables-1-8-8.patch b/net/rtpengine/patches/06-fix-compilation-with-iptables-1-8-8.patch index 1b92b59b..ef521599 100644 --- a/net/rtpengine/patches/06-fix-compilation-with-iptables-1-8-8.patch +++ b/net/rtpengine/patches/06-fix-compilation-with-iptables-1-8-8.patch @@ -17,9 +17,9 @@ Signed-off-by: Nick Hainke --- a/iptables-extension/libxt_RTPENGINE.c +++ b/iptables-extension/libxt_RTPENGINE.c -@@ -5,6 +5,10 @@ - #include - #include +@@ -9,6 +9,10 @@ + #define _init __attribute__((constructor)) _INIT + #endif +#ifndef _init +#define _init __attribute__((constructor)) _INIT diff --git a/net/rtpengine/patches/07-always-dynamically-allocate-buffer-for-kernel-mod.patch b/net/rtpengine/patches/07-always-dynamically-allocate-buffer-for-kernel-mod.patch index 6f42c179..72b7914a 100644 --- a/net/rtpengine/patches/07-always-dynamically-allocate-buffer-for-kernel-mod.patch +++ b/net/rtpengine/patches/07-always-dynamically-allocate-buffer-for-kernel-mod.patch @@ -1,6 +1,6 @@ --- a/kernel-module/xt_RTPENGINE.c +++ b/kernel-module/xt_RTPENGINE.c -@@ -3455,14 +3455,11 @@ static inline ssize_t proc_control_read_ +@@ -3457,14 +3457,11 @@ static inline ssize_t proc_control_read_ struct inode *inode; uint32_t id; struct rtpengine_table *t; @@ -15,7 +15,7 @@ else { /* > */ msg = kmalloc(buflen, GFP_KERNEL); if (!msg) -@@ -3559,16 +3556,14 @@ static inline ssize_t proc_control_read_ +@@ -3561,16 +3558,14 @@ static inline ssize_t proc_control_read_ goto out; }