summaryrefslogtreecommitdiffstats
path: root/h323_con.h
diff options
context:
space:
mode:
authorSuper User2007-05-06 15:54:52 +0200
committerSuper User2007-05-06 15:54:52 +0200
commit2ed0fee489c37a6e2d4473f6185ebbe3e746ac11 (patch)
treefcf232bc282c083404cfde0ce5b04236fe202c3e /h323_con.h
parentfirst commit (diff)
downloadlcr-2ed0fee489c37a6e2d4473f6185ebbe3e746ac11.tar.gz
lcr-2ed0fee489c37a6e2d4473f6185ebbe3e746ac11.tar.xz
lcr-2ed0fee489c37a6e2d4473f6185ebbe3e746ac11.zip
only for backup, still in coding state - no compile!!!
Diffstat (limited to 'h323_con.h')
-rw-r--r--h323_con.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/h323_con.h b/h323_con.h
new file mode 100644
index 0000000..e0645d3
--- /dev/null
+++ b/h323_con.h
@@ -0,0 +1,35 @@
+///////////////////////////////////////////////////////////////////////////////
+// //
+// PBX4Linux //
+// //
+//---------------------------------------------------------------------------//
+// Copyright: Andreas Eversberg //
+// //
+// h323_con connection header file //
+// //
+///////////////////////////////////////////////////////////////////////////////
+
+
+#ifndef H323_CON_HEADER
+#define H323_CON_HEADER
+
+class H323_chan;
+class H323_con : public H323Connection
+{
+ public:
+
+ H323_con(H323_ep &endpoint, unsigned callReference);
+ ~H323_con();
+ AnswerCallResponse OnAnswerCall(const PString &, const H323SignalPDU &, H323SignalPDU &);
+ BOOL OnOutgoingCall(const H323SignalPDU &connectPDU);
+ BOOL OnSendSignalSetup(H323SignalPDU &);
+ BOOL OnStartLogicalChannel(H323Channel &channel);
+ void OnUserInputString (const PString &value);
+ H323SignalPDU *GetConnectPDU(void);
+
+ private:
+};
+
+#endif // H323_CON_HEADER
+
+