backup
[lcr.git] / h323.h
1 /*****************************************************************************\
2 **                                                                           **
3 ** PBX4Linux                                                                 **
4 **                                                                           **
5 **---------------------------------------------------------------------------**
6 ** Copyright: Andreas Eversberg                                              **
7 **                                                                           **
8 ** h323-port header file                                                     **
9 **                                                                           **
10 \*****************************************************************************/ 
11
12
13 /* h323 port class */
14 class H323_chan;
15 class H323Port : public Port
16 {
17         public:
18         H323Port(int type, char *portname, struct port_settings *settings);
19         ~H323Port();
20         int message_epoint(unsigned long epoint_id, int message, union parameter *param);
21
22         H323_chan *p_h323_channel_in;                   /* channels of port */
23         H323_chan *p_h323_channel_out;
24         void *p_h323_connect; /* q931 object of connect PDU */
25 };
26
27