aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-01-16 15:35:53 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-01-20 08:11:51 +0100
commit901ef1cbbb49ccb959065307ddc18b63e3d53108 (patch)
treeb249462066b0bd56a63e9ea6c5711179f40e5f0f
parent8fe1571ea9bbd52140304206e340f30ead66d6ab (diff)
ipaccess: Change the visibility of the ipa messages
-rw-r--r--TODO-RELEASE1
-rw-r--r--src/input/ipaccess.c6
2 files changed, 4 insertions, 3 deletions
diff --git a/TODO-RELEASE b/TODO-RELEASE
index 98b9a64..e198d34 100644
--- a/TODO-RELEASE
+++ b/TODO-RELEASE
@@ -1,2 +1,3 @@
#library what description / commit summary line
libosmoabis abi-change input: Make keep alive configurable (generic)
+libosmoabis abi-change ipaccess: Change the visibility of the ipa messages
diff --git a/src/input/ipaccess.c b/src/input/ipaccess.c
index 4684520..07b47b2 100644
--- a/src/input/ipaccess.c
+++ b/src/input/ipaccess.c
@@ -61,15 +61,15 @@ static void *tall_ipa_ctx;
* - ID_REQUEST: first messages once OML has been established.
* - ID_ACK: in reply to ID_ACK.
*/
-const uint8_t ipa_pong_msg[] = {
+static const uint8_t ipa_pong_msg[] = {
0, 1, IPAC_PROTO_IPACCESS, IPAC_MSGT_PONG
};
-const uint8_t ipa_id_ack_msg[] = {
+static const uint8_t ipa_id_ack_msg[] = {
0, 1, IPAC_PROTO_IPACCESS, IPAC_MSGT_ID_ACK
};
-const uint8_t ipa_id_req_msg[] = {
+static const uint8_t ipa_id_req_msg[] = {
0, 17, IPAC_PROTO_IPACCESS, IPAC_MSGT_ID_GET,
0x01, IPAC_IDTAG_UNIT,
0x01, IPAC_IDTAG_MACADDR,