diff options
author | Neels Hofmeyr <neels@hofmeyr.de> | 2020-10-08 00:38:09 +0200 |
---|---|---|
committer | Neels Hofmeyr <neels@hofmeyr.de> | 2020-10-15 05:39:09 +0200 |
commit | d3d1cb6dbc468bb8e1701092c8dabb32907a3c09 (patch) | |
tree | d845602c4fe804d2df210c6677130ac6eb7256ed /include | |
parent | 88660605cba8d631631e4fd93de38df201024ad6 (diff) |
LCS: add proper BSSMAP-LE RESET re-using new generalized reset FSM
Previous commits to generalize the a_reset FSM prepare for this commit: use the
same reset FSM for the Lb interface.
Change-Id: I8c03716648f8c69d12d8f0a0bcec14f040d7cff2
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocom/bsc/lb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/osmocom/bsc/lb.h b/include/osmocom/bsc/lb.h index db191ba9d..dbea0b0e1 100644 --- a/include/osmocom/bsc/lb.h +++ b/include/osmocom/bsc/lb.h @@ -48,8 +48,8 @@ struct smlc_config { struct osmo_sccp_addr smlc_addr; char *smlc_addr_name; - /*! True after either side has sent a BSSMAP-LE RESET-ACK */ - bool ready; + /*! Lb link is ready when bssmap_reset_is_conn_ready(bssmap_reset) returns true. */ + struct bssmap_reset *bssmap_reset; struct rate_ctr_group *ctrs; }; |