summaryrefslogtreecommitdiff
path: root/channels/h323/chan_h323.h
diff options
context:
space:
mode:
authorJeremy McNamara <jj@nufone.net>2004-06-15 20:56:06 +0000
committerJeremy McNamara <jj@nufone.net>2004-06-15 20:56:06 +0000
commit1f4eadaf6a4840773cb44aa9be4ded233b72540f (patch)
treea801fd2c3cdc95ff9a4174bc12e1c3237fe120b4 /channels/h323/chan_h323.h
parentada1e768c46a689636de407e0692ea742894fd1f (diff)
check to make sure the extension exists b4 actually accepting the call and lets hope this gives Open H.323 enough time to sync up (bug #1714)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3220 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/h323/chan_h323.h')
-rwxr-xr-xchannels/h323/chan_h323.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/channels/h323/chan_h323.h b/channels/h323/chan_h323.h
index 198247cc0..23e583f89 100755
--- a/channels/h323/chan_h323.h
+++ b/channels/h323/chan_h323.h
@@ -153,6 +153,9 @@ con_established_cb on_connection_established;
typedef void (*clear_con_cb)(call_details_t);
clear_con_cb on_connection_cleared;
+typedef int (*answer_call_cb)(unsigned);
+answer_call_cb on_answer_call;
+
/* debug flag */
int h323debug;
@@ -178,7 +181,8 @@ extern "C" {
clear_con_cb,
chan_ringing_cb,
con_established_cb,
- send_digit_cb);
+ send_digit_cb,
+ answer_call_cb);
int h323_set_capability(int, int);