aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-sysmo/utils.h
diff options
context:
space:
mode:
authorÁlvaro Neira Ayuso <anayuso@sysmocom.de>2014-05-23 10:14:22 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-05-25 13:41:08 +0200
commit399b3fe1b4ab1a8d78ef5bf39d185b3defdf1b5e (patch)
tree5a59435c288698924cf51fe73f3d454e85b3f699 /src/osmo-bts-sysmo/utils.h
parent69925cef390289cf9eb0db283230953f82d9617c (diff)
sysmobts: Move the function check_oml_msg to oml file
This patch move this function to oml and we can use in the future for doing a sanity check to all the received OML message. Signed-off-by: Alvaro Neira Ayuso <anayuso@sysmocom.de>
Diffstat (limited to 'src/osmo-bts-sysmo/utils.h')
-rw-r--r--src/osmo-bts-sysmo/utils.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/osmo-bts-sysmo/utils.h b/src/osmo-bts-sysmo/utils.h
index c38757e3..3038d22a 100644
--- a/src/osmo-bts-sysmo/utils.h
+++ b/src/osmo-bts-sysmo/utils.h
@@ -21,12 +21,6 @@ enum manuf_type_id {
MANUF_ID_OSMO,
};
-enum oml_message_type {
- OML_MSG_TYPE_ETSI,
- OML_MSG_TYPE_IPA,
- OML_MSG_TYPE_OSMO,
-};
-
static const char osmocom_magic[] = "org.osmocom";
static const char ipaccess_magic[] = "com.ipaccess";
@@ -34,6 +28,5 @@ int add_manufacturer_id_label(struct msgb *msg, enum manuf_type_id type_id);
void prepend_oml_ipa_header(struct msgb *msg);
-int check_oml_msg(struct msgb *msg);
int check_ipa_header(struct msgb *msg);
#endif