summaryrefslogtreecommitdiffstats
path: root/package/asterisk
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-05-17 07:07:21 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-05-17 07:07:21 +0000
commit3704dddc0bcfee795c27a0705fe9684176d54221 (patch)
treeccc28b1a2b17d76e983742644faa82b82f970f75 /package/asterisk
parent76e09b69d8a14a539a001426136c9da57260c327 (diff)
Add a patch from Enzo to fix an incompatibility between Asterisk and Sipura SPA-3000 VoIP adapter (and possibly others)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@919 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/asterisk')
-rw-r--r--package/asterisk/patches/asterisk-1.0.7-sipura-rtp.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/package/asterisk/patches/asterisk-1.0.7-sipura-rtp.patch b/package/asterisk/patches/asterisk-1.0.7-sipura-rtp.patch
new file mode 100644
index 000000000..58a2e6b12
--- /dev/null
+++ b/package/asterisk/patches/asterisk-1.0.7-sipura-rtp.patch
@@ -0,0 +1,11 @@
+diff -ruN asterisk-1.0.7-old/rtp.c asterisk-1.0.7-new/rtp.c
+--- asterisk-1.0.7-old/rtp.c 2005-01-19 03:33:54.000000000 +0100
++++ asterisk-1.0.7-new/rtp.c 2005-05-16 19:40:02.000000000 +0200
+@@ -1048,6 +1048,7 @@
+ rtpheader[3] |= htonl((800));
+ /* Set the End bit for the last 3 */
+ rtpheader[3] |= htonl((1 << 23));
++ rtpheader[1] = htonl(++(rtp->lastts)); /* added for Sipura SPA-3000 compat. */
+ } else if ( x < 5) {
+ rtpheader[0] = htonl((2 << 30) | (payload << 16) | (rtp->seqno++));
+ }