aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmo-bts/oml.h
diff options
context:
space:
mode:
authorPhilipp Maier <pmaier@sysmocom.de>2019-03-15 10:30:18 +0100
committerPhilipp Maier <pmaier@sysmocom.de>2019-03-18 09:20:58 +0100
commit3dd90a09e4376a372684e29856ddd7602fe66b2f (patch)
treebb3776cecfe83f37e68cdc2525796ecf3787a1c8 /include/osmo-bts/oml.h
parentfc17dc763f493d8a6c02eb01de307be81004ea0c (diff)
oml: make oml_tx_failure_event_rep() public
The static function oml_tx_failure_event_rep() is a lot easier to use than the currently implemented signal scheme. Lets make it public so that we can quickly generate failure event reports. Change-Id: I9c4601840a06119f35cfe4da453fff3b293fe615 Related: OS#3823
Diffstat (limited to 'include/osmo-bts/oml.h')
-rw-r--r--include/osmo-bts/oml.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/osmo-bts/oml.h b/include/osmo-bts/oml.h
index 4dca2f87..a87d438e 100644
--- a/include/osmo-bts/oml.h
+++ b/include/osmo-bts/oml.h
@@ -47,4 +47,7 @@ extern const unsigned int oml_default_t200_ms[7];
/* Transmit failure event report */
void oml_fail_rep(uint16_t cause_value, const char *fmt, ...);
+int oml_tx_failure_event_rep(const struct gsm_abis_mo *mo, uint16_t cause_value,
+ const char *fmt, ...);
+
#endif // _OML_H */