new sounds for EFI
[lcr.git] / asterisk_client.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 addr;     /* reference to bchannel, if set */
17 };
18
19 /* structure of all bchannels (that are assinged by lcr) */
20 struct chan_bchannel {
21         struct chan_bchannel *next;
22         unsigned long addr;     /* stack address */
23         unsigned long ref;      /* if linked with a call, ref is set */
24 };
25