1 Commits

Author SHA1 Message Date
Neels Hofmeyr
f01964fee3 doc: specify location_request_fsm as dot graph 2020-10-13 02:39:28 +00:00
2 changed files with 20 additions and 0 deletions

View File

@@ -4,6 +4,7 @@ SUBDIRS = \
$(NULL)
msc: \
$(builddir)/location_request_fsm.png \
$(NULL)
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]
}