mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-10-23 08:12:01 +00:00
NITB is already gone from this branch. We may even resurrect it, but I prefer to name the realms 'libmsc' and 'libbsc', hence the nitb graph is the BSC graph now. Also add a libmsc graph.
16 lines
296 B
Plaintext
16 lines
296 B
Plaintext
digraph G {
|
|
net [label="gsm_network"]
|
|
subconns [label="subscr_conns"]
|
|
sub [label="gsm_subscriber"]
|
|
subcon [label="gsm_subscriber_conn"]
|
|
subgrp [label="gsm_subscriber_group"]
|
|
|
|
net -> subconns
|
|
subconns -> subcon [label="llist"]
|
|
subcon -> sub
|
|
subcon -> net
|
|
|
|
sub -> subgrp
|
|
subgrp -> net
|
|
}
|