aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-08-08 07:51:51 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-08-08 07:51:51 +0800
commit5b084017017dc410897e6e4691d0bac10f0639c1 (patch)
treeb01055fc295b2866f6c53a8fd849757bc4042706 /include
parent7b7c297c8f5de70fb534643c28b2bd5851f08f90 (diff)
mgcp: Use uint32_t for the CI in every place.
Diffstat (limited to 'include')
-rw-r--r--include/mgcp/mgcp.h2
-rw-r--r--include/mgcp/mgcp_internal.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/mgcp/mgcp.h b/include/mgcp/mgcp.h
index db05cc4..8271c7f 100644
--- a/include/mgcp/mgcp.h
+++ b/include/mgcp/mgcp.h
@@ -107,7 +107,7 @@ struct mgcp_config {
void *data;
struct mgcp_endpoint *endpoints;
- unsigned int last_call_id;
+ uint32_t last_call_id;
};
/* config management */
diff --git a/include/mgcp/mgcp_internal.h b/include/mgcp/mgcp_internal.h
index 2d9629a..b190f55 100644
--- a/include/mgcp/mgcp_internal.h
+++ b/include/mgcp/mgcp_internal.h
@@ -50,7 +50,7 @@ struct mgcp_rtp_state {
};
struct mgcp_endpoint {
- int ci;
+ uint32_t ci;
char *callid;
char *local_options;
int conn_mode;