summaryrefslogtreecommitdiffstats
path: root/joinpbx.h
diff options
context:
space:
mode:
authorSuper User2007-07-26 14:23:56 +0200
committerSuper User2007-07-26 14:23:56 +0200
commit701b046a45c2c79cc6d07ac3a4f84f499f7ed376 (patch)
tree0b534df0b08d2016f473fbee74bae36a010a7258 /joinpbx.h
parentfixes & improvements (diff)
downloadlcr-701b046a45c2c79cc6d07ac3a4f84f499f7ed376.tar.gz
lcr-701b046a45c2c79cc6d07ac3a4f84f499f7ed376.tar.xz
lcr-701b046a45c2c79cc6d07ac3a4f84f499f7ed376.zip
unified socket application interface (for asterisk and maybe other apps)
bugfixes
Diffstat (limited to 'joinpbx.h')
-rw-r--r--joinpbx.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/joinpbx.h b/joinpbx.h
index dfc391a..5cdfdd5 100644
--- a/joinpbx.h
+++ b/joinpbx.h
@@ -58,17 +58,17 @@ class JoinPBX : public Join
int handler(void);
int release(struct join_relation *relation, int location, int cause);
- char c_caller[32]; /* caller number */
- char c_caller_id[32]; /* caller id to signal */
- char c_dialed[1024]; /* dial string of (all) number(s) */
- char c_todial[32]; /* overlap dialing (part not signalled yet) */
- int c_multicause, c_multilocation;
+ char j_caller[32]; /* caller number */
+ char j_caller_id[32]; /* caller id to signal */
+ char j_dialed[1024]; /* dial string of (all) number(s) */
+ char j_todial[32]; /* overlap dialing (part not signalled yet) */
+ int j_multicause, j_multilocation;
- int c_pid; /* pid of join to generate bridge id */
- int c_updatebridge; /* bridge must be updated */
- struct join_relation *c_relation; /* list of endpoints that are related to the join */
+ int j_pid; /* pid of join to generate bridge id */
+ int j_updatebridge; /* bridge must be updated */
+ struct join_relation *j_relation; /* list of endpoints that are related to the join */
- int c_partyline; /* if set, join is conference room */
+ int j_partyline; /* if set, join is conference room */
void bridge(void);
void bridge_data(unsigned long epoint_from, struct join_relation *relation_from, union parameter *param);