aboutsummaryrefslogtreecommitdiffstats
path: root/channels/h323/ast_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/ast_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/ast_h323.h')
-rwxr-xr-xchannels/h323/ast_h323.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/channels/h323/ast_h323.h b/channels/h323/ast_h323.h
index eb8de1874..3b652589e 100755
--- a/channels/h323/ast_h323.h
+++ b/channels/h323/ast_h323.h
@@ -175,6 +175,7 @@ class MyH323Connection : public H323Connection {
void OnSendCapabilitySet(H245_TerminalCapabilitySet &);
BOOL OnReceivedCapabilitySet(const H323Capabilities &, const H245_MultiplexCapability *,
H245_TerminalCapabilitySetReject &);
+ void SetCause(int _cause) { cause = _cause; };
PString sourceAliases;
PString destAliases;
@@ -186,6 +187,7 @@ class MyH323Connection : public H323Connection {
unsigned progressSetup;
unsigned progressAlert;
+ int cause;
RTP_DataFrame::PayloadTypes dtmfCodec;