ipaccess: Change the visibility of the ipa messages

This commit is contained in:
Holger Hans Peter Freyther 2014-01-16 15:35:53 +01:00
parent 8fe1571ea9
commit 901ef1cbbb
2 changed files with 4 additions and 3 deletions

View File

@ -1,2 +1,3 @@
#library what description / commit summary line #library what description / commit summary line
libosmoabis abi-change input: Make keep alive configurable (generic) libosmoabis abi-change input: Make keep alive configurable (generic)
libosmoabis abi-change ipaccess: Change the visibility of the ipa messages

View File

@ -61,15 +61,15 @@ static void *tall_ipa_ctx;
* - ID_REQUEST: first messages once OML has been established. * - ID_REQUEST: first messages once OML has been established.
* - ID_ACK: in reply to ID_ACK. * - 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 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 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, 0, 17, IPAC_PROTO_IPACCESS, IPAC_MSGT_ID_GET,
0x01, IPAC_IDTAG_UNIT, 0x01, IPAC_IDTAG_UNIT,
0x01, IPAC_IDTAG_MACADDR, 0x01, IPAC_IDTAG_MACADDR,