diff options
author | sobomax <sobomax@FreeBSD.org> | 2004-12-29 00:01:54 +0000 |
---|---|---|
committer | sobomax <sobomax@FreeBSD.org> | 2004-12-29 00:01:54 +0000 |
commit | 8ccd39fdbf8f3d136ffd7295f390e5a915d909a5 (patch) | |
tree | 3ebefc2fb8b43ef01a2125141b3fcd9d4d2ba74e /net/asterisk16/files | |
parent | 255ebf4e7626ddf13df60a44f13a987b364ade65 (diff) | |
download | FreeBSD-ports-8ccd39fdbf8f3d136ffd7295f390e5a915d909a5.zip FreeBSD-ports-8ccd39fdbf8f3d136ffd7295f390e5a915d909a5.tar.gz |
o Provide rc.d script;
o Fix build on 5.2.1.
Submitted by: Marat N.Afanasyev <amarat@ksu.ru>
Diffstat (limited to 'net/asterisk16/files')
-rw-r--r-- | net/asterisk16/files/asterisk.sh | 25 | ||||
-rw-r--r-- | net/asterisk16/files/patch-channels::h323::ast_h323.cpp | 37 |
2 files changed, 62 insertions, 0 deletions
diff --git a/net/asterisk16/files/asterisk.sh b/net/asterisk16/files/asterisk.sh new file mode 100644 index 0000000..deee10c --- /dev/null +++ b/net/asterisk16/files/asterisk.sh @@ -0,0 +1,25 @@ +#!/bin/sh + +# PROVIDE asterisk +# REQUIRE: NETWORKING SERVERS +# BEFORE: DAEMON +# KEYWORD: FreeBSD shutdown + +# +# Add the following lines to /etc/rc.conf to enable asterisk: +# +# asterisk_enable="YES" +# + +. /etc/rc.subr + +name=asterisk +rcvar=`set_rcvar` + +command=/usr/local/sbin/asterisk +pidfile=/var/run/asterisk.pid + +asterisk_enable=${asterisk_enable:-"NO"} + +load_rc_config $name +run_rc_command "$1" diff --git a/net/asterisk16/files/patch-channels::h323::ast_h323.cpp b/net/asterisk16/files/patch-channels::h323::ast_h323.cpp new file mode 100644 index 0000000..6cfae1e --- /dev/null +++ b/net/asterisk16/files/patch-channels::h323::ast_h323.cpp @@ -0,0 +1,37 @@ + +$FreeBSD$ + +--- channels/h323/ast_h323.cpp.orig ++++ channels/h323/ast_h323.cpp +@@ -722,7 +722,7 @@ + if (h323debug) { + cout << " -- Sending user input tone (" << tone << ") to remote" << endl; + } +- on_send_digit(GetCallReference(), tone); ++ on_send_digit(GetCallReference(), &tone); + H323Connection::SendUserInputTone(tone, duration); + } + +@@ -732,18 +732,20 @@ + if (h323debug) { + cout << " -- Received user input tone (" << tone << ") from remote" << endl; + } +- on_send_digit(GetCallReference(), tone); ++ on_send_digit(GetCallReference(), &tone); + } + H323Connection::OnUserInputTone(tone, duration, logicalChannel, rtpTimestamp); + } + + void MyH323Connection::OnUserInputString(const PString &value) + { ++ char val; + if (mode == H323_DTMF_RFC2833) { + if (h323debug) { + cout << " -- Received user input string (" << value << ") from remote." << endl; + } +- on_send_digit(GetCallReference(), value[0]); ++ val = value[0]; ++ on_send_digit(GetCallReference(), &val); + } + } + |