summaryrefslogtreecommitdiff
path: root/channels/h323/chan_h323.h
diff options
context:
space:
mode:
authorJeremy McNamara <jj@nufone.net>2005-04-04 07:06:26 +0000
committerJeremy McNamara <jj@nufone.net>2005-04-04 07:06:26 +0000
commit0efb0da41fb137e629f01462066216953d0a9e89 (patch)
tree7494760f47f730353eb565be5759a5392619e2e1 /channels/h323/chan_h323.h
parente7bbe31f8ff1f3bde432d22e60677d2038cca72c (diff)
Better dependancy and version checking method, solve call problems when dealing with a gatekeeper, sanity check call cleanup, in hopes to avoid deadlocks (Bugs #3848 #3643, #3591)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5379 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 a59da67fc..3be251e80 100755
--- a/channels/h323/chan_h323.h
+++ b/channels/h323/chan_h323.h
@@ -165,6 +165,9 @@ extern answer_call_cb on_answer_call;
typedef void (*rfc2833_cb)(unsigned, const char *, int);
extern rfc2833_cb on_set_rfc2833_payload;
+typedef void (*hangup_cb)(unsigned, const char *, int);
+extern hangup_cb on_hangup;
+
/* debug flag */
extern int h323debug;
@@ -197,7 +200,8 @@ extern "C" {
send_digit_cb,
answer_call_cb,
progress_cb,
- rfc2833_cb);
+ rfc2833_cb,
+ hangup_cb);
int h323_set_capability(int, int);
int h323_set_alias(struct oh323_alias *);
int h323_set_gk(int, char *, char *);