aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/oml.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/oml.c')
-rw-r--r--src/common/oml.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/oml.c b/src/common/oml.c
index 5a647097..62078662 100644
--- a/src/common/oml.c
+++ b/src/common/oml.c
@@ -229,6 +229,13 @@ int oml_tx_state_changed(struct gsm_abis_mo *mo)
return oml_mo_send_msg(mo, nmsg, NM_MT_STATECHG_EVENT_REP);
}
+/* First initialization of MO, does _not_ generate state changes */
+int oml_mo_state_init(struct gsm_abis_mo *mo, int op_state, int avail_state)
+{
+ mo->nm_state.availability = avail_state;
+ mo->nm_state.operational = op_state;
+}
+
int oml_mo_state_chg(struct gsm_abis_mo *mo, int op_state, int avail_state)
{
int rc = 0;