aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/include/openbsc/oap.h
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/include/openbsc/oap.h
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/include/openbsc/oap.h')
-rw-r--r--openbsc/include/openbsc/oap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/include/openbsc/oap.h b/openbsc/include/openbsc/oap.h
index 2370cbe07..2206184d1 100644
--- a/openbsc/include/openbsc/oap.h
+++ b/openbsc/include/openbsc/oap.h
@@ -25,7 +25,7 @@
#include <stdint.h>
struct msgb;
-struct oap_message;
+struct osmo_oap_message;
/* This is the config part for vty. It is essentially copied in oap_state,
* where values are copied over once the config is considered valid. */
@@ -74,5 +74,5 @@ int oap_handle(struct oap_state *state, const struct msgb *msg_rx, struct msgb *
/* Allocate a msgb and in it, return the encoded oap_msg. Return NULL on
* error. (Like oap_encode(), but also allocates a msgb.)
* About the name: the idea is do_something(oap_encoded(my_struct)) */
-struct msgb *oap_encoded(const struct oap_message *oap_msg);
+struct msgb *oap_encoded(const struct osmo_oap_message *oap_msg);