mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-cbc.git
synced 2025-11-02 13:13:35 +00:00
It really doesn't make sense to share the event list betwen those for several reasons. First, because ech of those FSM relate to different things: * smscb_message_fsm: Handling/scheduling of 1 smscb towards all peers * smscb_peer_fsm: Handling/scheduling of 1 smscb towards 1 peer. The former has higher level interface used by the REST API, plus some mid level interface used by smscb_peer_fsm. The later has a mid level interface used by smscb_message_fsm to interact, and a lower level interface used by the SBcAP/CBSP links to talk to. Furthermore, this makes it a lot easier understanding which events are sent from one to another FSM. Change-Id: I909474d1ff4ec7ed20aff0981da47074397df6cb
18 lines
268 B
Makefile
18 lines
268 B
Makefile
noinst_HEADERS = \
|
|
cbc_data.h \
|
|
cbc_peer.h \
|
|
cbc_message.h \
|
|
cbc_vty.h \
|
|
cbsp_link.h \
|
|
cbsp_link_fsm.h \
|
|
cbsp_msg.h \
|
|
charset.h \
|
|
debug.h \
|
|
sbcap_msg.h \
|
|
sbcap_link.h \
|
|
sbcap_link_fsm.h \
|
|
rest_it_op.h \
|
|
smscb_message_fsm.h \
|
|
smscb_peer_fsm.h \
|
|
$(NULL)
|