unified socket application interface (for asterisk and maybe other apps)
[lcr.git] / joinremote.h
1 /*****************************************************************************\
2 **                                                                           **
3 ** Linux Call Router                                                         **
4 **                                                                           **
5 **---------------------------------------------------------------------------**
6 ** Copyright: Andreas Eversberg                                              **
7 **                                                                           **
8 ** join header file for Asterisk interface                                   **
9 **                                                                           **
10 \*****************************************************************************/ 
11
12 class JoinRemote : public Join
13 {
14         public:
15         JoinRemote(unsigned long serial, char *remote);
16         ~JoinRemote();
17         void message_epoint(unsigned long epoint_id, int message, union parameter *param);
18         void message_remote(unsigned long ref, int message_type, union parameter *param);
19         int handler(void);
20
21         char j_remote[32];
22         unsigned long j_epoint_id;
23 }; 
24
25