aboutsummaryrefslogtreecommitdiffstats
path: root/include/mgcp_ss7.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-07-31 04:37:26 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-07-31 04:37:26 +0800
commit5aa17014deace6d91a5cbb9784a9c05521ba19c8 (patch)
tree50cc56ab2fa7732216e13755112e7ef3735e4241 /include/mgcp_ss7.h
parent97f66e2b534e2a54c63360a3f8134a0189c54e25 (diff)
u_int8_t -> uint8_t
Diffstat (limited to 'include/mgcp_ss7.h')
-rw-r--r--include/mgcp_ss7.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mgcp_ss7.h b/include/mgcp_ss7.h
index 04eeb5e..d3fae18 100644
--- a/include/mgcp_ss7.h
+++ b/include/mgcp_ss7.h
@@ -54,12 +54,12 @@ enum {
struct mgcp_ss7_cmd {
struct llist_head entry;
- u_int8_t type;
+ uint8_t type;
u_int32_t port;
u_int32_t param;
};
-void mgcp_ss7_exec(struct mgcp_ss7 *mgcp, u_int8_t type, u_int32_t port, u_int32_t param);
+void mgcp_ss7_exec(struct mgcp_ss7 *mgcp, uint8_t type, u_int32_t port, u_int32_t param);
struct mgcp_ss7 *mgcp_ss7_init(int endpoints, const char *local_ip, const char *mgw_ip, int base_port, int payload);
void mgcp_ss7_reset(struct mgcp_ss7 *mgcp);