summaryrefslogtreecommitdiffstats
path: root/chan_lcr.h
diff options
context:
space:
mode:
Diffstat (limited to 'chan_lcr.h')
-rw-r--r--chan_lcr.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/chan_lcr.h b/chan_lcr.h
new file mode 100644
index 0000000..0f861fe
--- /dev/null
+++ b/chan_lcr.h
@@ -0,0 +1,19 @@
+/*****************************************************************************\
+** **
+** Linux Call Router **
+** **
+**---------------------------------------------------------------------------**
+** Copyright: Andreas Eversberg **
+** **
+** Asterisk socket client header **
+** **
+\*****************************************************************************/
+
+/* structure for all calls */
+struct chan_call {
+ struct chan_call *next;
+ unsigned long ref; /* callref, is 0, if not yet set */
+ unsigned long bchannel_handle; /* reference to bchannel, if set */
+};
+
+