aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/sccp/sccp.h
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-07-23 18:39:17 +0800
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-07-23 18:39:17 +0800
commitc2c4621a5da8aef1662fc56747f6715659157c79 (patch)
tree47f7106029cf5262f1a64472d92f9c4c526a9a82 /openbsc/include/sccp/sccp.h
parentc702b7528f42932c5cdd0dc404e3cbd869416e43 (diff)
sccp: u_int8_t -> uint8_t
Diffstat (limited to 'openbsc/include/sccp/sccp.h')
-rw-r--r--openbsc/include/sccp/sccp.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/openbsc/include/sccp/sccp.h b/openbsc/include/sccp/sccp.h
index 84ae914ef..e399b2f7f 100644
--- a/openbsc/include/sccp/sccp.h
+++ b/openbsc/include/sccp/sccp.h
@@ -47,12 +47,12 @@ enum {
struct sockaddr_sccp {
sa_family_t sccp_family; /* AF_SCCP in the future??? */
- u_int8_t sccp_ssn; /* subssystem number for routing */
+ uint8_t sccp_ssn; /* subssystem number for routing */
/* TODO fill in address indicator... if that is ever needed */
/* not sure about these */
- /* u_int8_t sccp_class; */
+ /* uint8_t sccp_class; */
};
/*
@@ -60,13 +60,13 @@ struct sockaddr_sccp {
*/
struct sccp_address {
struct sccp_called_party_address address;
- u_int8_t ssn;
- u_int8_t poi[2];
+ uint8_t ssn;
+ uint8_t poi[2];
};
struct sccp_optional_data {
- u_int8_t data_len;
- u_int8_t data_start;
+ uint8_t data_len;
+ uint8_t data_start;
};
struct sccp_connection {