work on socket. (don't try yet)
[lcr.git] / chan_lcr.h
1 /*****************************************************************************\
2 **                                                                           **
3 ** Linux Call Router                                                         **
4 **                                                                           **
5 **---------------------------------------------------------------------------**
6 ** Copyright: Andreas Eversberg                                              **
7 **                                                                           **
8 ** Asterisk socket client header                                             **
9 **                                                                           **
10 \*****************************************************************************/
11
12 /* structure for all calls */
13 struct chan_call {
14         struct chan_call *next;
15         unsigned long ref;      /* callref, is 0, if not yet set */
16         unsigned long bchannel_handle;  /* reference to bchannel, if set */
17
18         unsigned short bridge_id; /* 0 = off, equal ids are bridged */
19 };
20
21