aboutsummaryrefslogtreecommitdiffstats
path: root/channels/h323/chan_h323.h
diff options
context:
space:
mode:
authorjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-04 07:06:26 +0000
committerjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2005-04-04 07:06:26 +0000
commit6adbb5ecd4648a9152f61e0b6119e5ebca3dfd42 (patch)
tree7494760f47f730353eb565be5759a5392619e2e1 /channels/h323/chan_h323.h
parent71fb6b3ec37b3881da0afbd08172399b2d2bbc6f (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: http://svn.digium.com/svn/asterisk/trunk@5379 f38db490-d61c-443f-a65b-d21fe96a405b
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 *);