aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom/bsc/bssmap_reset.h
diff options
context:
space:
mode:
authorNeels Hofmeyr <neels@hofmeyr.de>2020-10-09 17:18:29 +0200
committerNeels Hofmeyr <neels@hofmeyr.de>2020-10-15 05:28:44 +0200
commite95b92b63ec2032811267996e3fe17c3ff8326ff (patch)
treefb10240c8bb1e79fbed4eabdf05931812151dfdb /include/osmocom/bsc/bssmap_reset.h
parent6efafb1219fbb6f4e0f7d29a4983ad74561c1a42 (diff)
BSSMAP RESET: move RESET-ACK into reset fsm
The Lb interface will need the same RESET-ACK logic. Change-Id: Idf4682319a0af5665e867dbc0515d1fe343d9daf
Diffstat (limited to 'include/osmocom/bsc/bssmap_reset.h')
-rw-r--r--include/osmocom/bsc/bssmap_reset.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/osmocom/bsc/bssmap_reset.h b/include/osmocom/bsc/bssmap_reset.h
index ba6425701..560c54307 100644
--- a/include/osmocom/bsc/bssmap_reset.h
+++ b/include/osmocom/bsc/bssmap_reset.h
@@ -2,6 +2,7 @@
#pragma once
enum bssmap_reset_fsm_event {
+ BSSMAP_RESET_EV_RX_RESET,
BSSMAP_RESET_EV_RX_RESET_ACK,
BSSMAP_RESET_EV_CONN_CFM_SUCCESS,
BSSMAP_RESET_EV_CONN_CFM_FAILURE,
@@ -11,6 +12,7 @@ struct bssmap_reset_cfg {
int conn_cfm_failure_threshold;
struct {
void (*tx_reset)(void *data);
+ void (*tx_reset_ack)(void *data);
void (*link_up)(void *data);
void (*link_lost)(void *data);
} ops;