summaryrefslogtreecommitdiffstats
path: root/h323.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.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.h')
-rw-r--r--h323.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/h323.h b/h323.h
new file mode 100644
index 0000000..236a2d1
--- /dev/null
+++ b/h323.h
@@ -0,0 +1,27 @@
+/*****************************************************************************\
+** **
+** PBX4Linux **
+** **
+**---------------------------------------------------------------------------**
+** Copyright: Andreas Eversberg **
+** **
+** h323-port header file **
+** **
+\*****************************************************************************/
+
+
+/* h323 port class */
+class H323_chan;
+class H323Port : public Port
+{
+ public:
+ H323Port(int type, char *portname, struct port_settings *settings);
+ ~H323Port();
+ int message_epoint(unsigned long epoint_id, int message, union parameter *param);
+
+ H323_chan *p_h323_channel_in; /* channels of port */
+ H323_chan *p_h323_channel_out;
+ void *p_h323_connect; /* q931 object of connect PDU */
+};
+
+