summaryrefslogtreecommitdiffstats
path: root/message.h
diff options
context:
space:
mode:
authorSuper User2008-06-14 08:34:50 +0200
committerSuper User2008-06-14 08:34:50 +0200
commitd2b113f2c4f11acfaee1b2e0fd2f03744a89f6d4 (patch)
tree8c9e9504a275a43d5a8785dcca7badf28ada5999 /message.h
parentfixed dialing-bug when dialing chan_lcr (diff)
downloadlcr-d2b113f2c4f11acfaee1b2e0fd2f03744a89f6d4.tar.gz
lcr-d2b113f2c4f11acfaee1b2e0fd2f03744a89f6d4.tar.xz
lcr-d2b113f2c4f11acfaee1b2e0fd2f03744a89f6d4.zip
changed long to int (64 bit system's compatibilty)
Diffstat (limited to 'message.h')
-rw-r--r--message.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/message.h b/message.h
index c84ab19..7fa9be2 100644
--- a/message.h
+++ b/message.h
@@ -301,7 +301,7 @@ struct param_hello {
struct param_bchannel {
int type; /* BCHANNEL_* */
- unsigned long handle; /* bchannel stack/portid */
+ unsigned int handle; /* bchannel stack/portid */
int tx_gain, rx_gain;
char pipeline[256];
unsigned char crypt[128];
@@ -347,8 +347,8 @@ struct lcr_msg {
struct lcr_msg *next;
int type; /* type of message */
int flow; /* from where to where */
- unsigned long id_from; /* in case of flow==PORT_TO_EPOINT: id_from is the port's serial, id_to is the epoint's serial */
- unsigned long id_to;
+ unsigned int id_from; /* in case of flow==PORT_TO_EPOINT: id_from is the port's serial, id_to is the epoint's serial */
+ unsigned int id_to;
int keep;
union parameter param;
};