aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmo-bts
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2017-01-02 20:16:22 +0100
committerMax <msuraev@sysmocom.de>2017-01-08 11:03:39 +0000
commitc038cb790309c4970980d6811456c3ed6bc4d896 (patch)
treec681e18a06ce4894a2eea05e2a0bb6e48447fce6 /include/osmo-bts
parent94dd5060c82c174b0b0af25284593272252d5787 (diff)
Add Abis OML failure event reporting
Send 3GPP TS 12.21 ยง 8.8.2 Abis/OML failure event report. Change-Id: Ib1170edca2207752984a554d7a6a57c224f6d5f5 Related: OS#1615
Diffstat (limited to 'include/osmo-bts')
-rw-r--r--include/osmo-bts/oml.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/osmo-bts/oml.h b/include/osmo-bts/oml.h
index 9f494447..217ec64c 100644
--- a/include/osmo-bts/oml.h
+++ b/include/osmo-bts/oml.h
@@ -1,6 +1,8 @@
#ifndef _OML_H
#define _OML_H
+#include <osmocom/gsm/protocol/gsm_12_21.h>
+
struct gsm_bts;
struct gsm_abis_mo;
struct msgb;
@@ -42,4 +44,8 @@ int oml_mo_fom_ack_nack(struct gsm_abis_mo *mo, uint8_t orig_msg_type,
int oml_set_lchan_t200(struct gsm_lchan *lchan);
extern const unsigned int oml_default_t200_ms[7];
+/* Transmit failure event report */
+int oml_tx_failure_event_rep(struct gsm_abis_mo *mo, uint16_t cause_value,
+ const char *fmt, ...);
+
#endif // _OML_H */