aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gprs/oap_messages.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-04-27 18:14:14 +0200
committerHarald Welte <laforge@gnumonks.org>2016-04-29 13:10:37 +0200
commit564c06525b9acb3f4b90d4c92970e7d9cc5b1d8e (patch)
tree415c88dfac2c692f548e50ab32830f2ba9b5ab68 /openbsc/src/gprs/oap_messages.c
parent31760a1f6089fb59475ba79faa3eb97e4cf00f68 (diff)
OAP: use osmo_oap_ prefix for OAP, rather than plain oap_
this is in preparation of moving related code to libosmocore.
Diffstat (limited to 'openbsc/src/gprs/oap_messages.c')
-rw-r--r--openbsc/src/gprs/oap_messages.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/openbsc/src/gprs/oap_messages.c b/openbsc/src/gprs/oap_messages.c
index ccb3c81a2..53ea9ac84 100644
--- a/openbsc/src/gprs/oap_messages.c
+++ b/openbsc/src/gprs/oap_messages.c
@@ -31,8 +31,8 @@
#include <stdint.h>
-int oap_decode(const uint8_t *const_data, size_t data_len,
- struct oap_message *oap_msg)
+int osmo_oap_decode(const uint8_t *const_data, size_t data_len,
+ struct osmo_oap_message *oap_msg)
{
int rc;
uint8_t tag;
@@ -144,7 +144,7 @@ int oap_decode(const uint8_t *const_data, size_t data_len,
return 0;
}
-void oap_encode(struct msgb *msg, const struct oap_message *oap_msg)
+void osmo_oap_encode(struct msgb *msg, const struct osmo_oap_message *oap_msg)
{
uint8_t u8;