Fixed broken timeout condition
[lcr.git] / remote.h
1
2 /* GSM port class */
3 class Premote : public PmISDN
4 {
5         public:
6         Premote(int type, struct mISDNport *mISDNport, char *portname, struct port_settings *settings, int channel, int exclusive, int mode, int remote_id);
7         ~Premote();
8
9         unsigned int p_m_r_ref;
10         int p_m_r_remote_id; /* remote instance (socket) */
11         char p_m_r_remote_app[32];
12         unsigned int p_m_r_handle; /* 0, if no bchannel is exported */
13
14         int message_epoint(unsigned int epoint_id, int message_id, union parameter *param);
15         void message_remote(int message_type, union parameter *param);
16
17         int hunt_bchannel(void);
18 };
19
20