mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-10-23 08:12:01 +00:00
This is the first step in creating this repository from the legacy openbsc.git. Like all other Osmocom repositories, keep the autoconf and automake files in the repository root. openbsc.git has been the sole exception, which ends now. Change-Id: I9c6f2a448d9cb1cc088cf1cf6918b69d7e69b4e7
34 lines
584 B
Plaintext
34 lines
584 B
Plaintext
digraph G {
|
|
net [label="gsm_network"]
|
|
bts [label="gsm_bts"]
|
|
trx [label="gsm_bts_trx"]
|
|
ts [label="gsm_bts_trx_ts"]
|
|
lchan [label="gsm_lchan"]
|
|
sub [label="gsm_subscriber"]
|
|
subcon [label="gsm_subscriber_conn"]
|
|
sccpcon [label="osmo_bsc_sccp_con"]
|
|
subgrp [label="gsm_subscriber_group"]
|
|
|
|
net -> bts
|
|
bts -> trx
|
|
trx -> ts
|
|
ts -> lchan
|
|
|
|
lchan -> ts
|
|
ts -> trx
|
|
trx -> bts
|
|
bts -> net
|
|
|
|
lchan -> subcon
|
|
|
|
subcon -> sub
|
|
subcon -> sccpcon
|
|
subcon -> lchan
|
|
subcon -> lchan [label="ho_lchan"]
|
|
subcon -> bts
|
|
subcon -> lchan [label="secondary_lchan"]
|
|
|
|
sub -> subgrp
|
|
subgrp -> net
|
|
}
|