doc: specify location_request_fsm as dot graph

This commit is contained in:
Neels Hofmeyr 2020-09-01 22:42:25 +02:00
parent 7299215d74
commit f01964fee3
2 changed files with 20 additions and 0 deletions

View File

@ -4,6 +4,7 @@ SUBDIRS = \
$(NULL) $(NULL)
msc: \ msc: \
$(builddir)/location_request_fsm.png \
$(NULL) $(NULL)
dot: \ dot: \

View File

@ -0,0 +1,19 @@
digraph G {
rankdir=TB
labelloc=t; label="Location Request FSM in OsmoSMLC"
BSC [label="BSC\nvia\nLb interface",shape=box3d]
subgraph cluster_LOC_REQ_FSM {
label="loc_req_fsm"
INIT -> WAIT_TA_RESPONSE
WAIT_TA_RESPONSE -> GOT_TA_RESPONSE
GOT_TA_RESPONSE -> terminate
terminate [shape=octagon]
}
BSC -> INIT [label="BSSMAP-LE Perform\nLocation Req",style=dashed]
WAIT_TA_RESPONSE -> BSC [label="TA Request",style=dashed]
BSC -> WAIT_TA_RESPONSE [label="TA Response",style=dashed]
GOT_TA_RESPONSE -> BSC [label="BSSMAP-LE Perform\nLocation Resp",style=dashed]
}