aboutsummaryrefslogtreecommitdiffstats
path: root/channels/h323/ast_h323.h
diff options
context:
space:
mode:
authorjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-01-06 16:43:24 +0000
committerjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2004-01-06 16:43:24 +0000
commit96fb12f2f663d1913a599123e3388650c6d0f05a (patch)
tree85d9ad3a2005319e1fbd74822eff3a55502adfba /channels/h323/ast_h323.h
parent919903f9427a08d97f2832354d457484d8478637 (diff)
nuke file descriptor leak..You don't need a whole new thread to hang up a friggen call
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1890 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/h323/ast_h323.h')
-rwxr-xr-xchannels/h323/ast_h323.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/channels/h323/ast_h323.h b/channels/h323/ast_h323.h
index 5c0c2b4a9..00494c486 100755
--- a/channels/h323/ast_h323.h
+++ b/channels/h323/ast_h323.h
@@ -330,23 +330,3 @@ class MyProcess : public PProcess {
};
-/**
- * This class handles the termination of a call.
- * Note that OpenH323 Library requires that the termination
- * of a call should be done inside a separate thread of execution.
- */
-class ClearCallThread : public PThread {
-
- PCLASSINFO(ClearCallThread, PThread);
-
- public:
- ClearCallThread(const char *tc);
- ~ClearCallThread();
-
- void Main();
-
- protected:
- PString token;
-};
-
-