blob: 3fd9471942120babed52521ee436aafb84965dd6 [file] [log] [blame]
Harald Welte16872ad2021-12-21 15:27:04 +01001digraph G {
2 rankdir = LR;
3 label = "BTS_Tests component hierarchy";
4
5 "ConnHdlr" [
6 shape = "record"
7 label = "<f0> ConnHdlr | <RSL> RSL | <RSL_PROC> RSL_PROC | <LAPDM> LAPDM | <L1CTL> L1CTL | <BTS_TRXC> BTS_TRXC | <BSCVTY> BSCVTY | <PCU> PCU | <RTPEM_DATA> RTPEM_DATA | <RTPEM_CTRL> RTPEM_CTRL"
8 ];
9 "ConnHdlr":L1CTL -> "system":UD [label="L1CTL_PT:UD_PT"]
10 "ConnHdlr":BTS_TRXC -> "system":IPL4 [label="TRXC_CODEC_PT"]
11 "ConnHdlr":BSCVTY -> "system":TELNET
12 "ConnHdlr":PCU -> "system":UD [label="PCUIF_CODEC_PT"]
13
14 "RSL_Emulation_CT" [
15 shape = "record"
16 label = "<f0> RSL_Emulation_CT | <CLIENT_PT> CLIENT_PT | <RSL_PROC> RSL_PROC | <CCHAN_PT> CCHAN_PT | <IPA_PT> IPA_PT"
17 ]
18 "RSL_Emulation_CT":IPA_PT -> "IPA_Emulation_CT":IPA_RSL_PORT
19 "ConnHdlr":RSL -> "RSL_Emulation_CT":CLIENT_PT
20 "ConnHdlr":RSL_PROC -> "RSL_Emulation_CT":RSL_PROC
21
22 "LAPDm_CT" [
23 shape = "record"
24 label = "<f0> LAPDM_CT | <LAPDM_SP> LAPDM_SP | <L1CTL> L1CTL"
25 ]
26 "LAPDm_CT":L1CTL -> "system":UD [label="L1CTL_PT:UD_PT"]
27 "ConnHdlr":LAPDM -> "LAPDm_CT":LAPDM_SP
28
29 "RTP_Emulation_CT" [
30 shape = "record"
31 label = "<f0> RTP_Emulation_CT | <DATA> DATA | <CTRL> CTRL | <RTP> RTP | <RTCP> RTCP"
32 ]
33 "RTP_Emulation_CT":RTP -> "system":IPL4 [label="RTP_CODEC_PT"]
34 "RTP_Emulation_CT":RTCP -> "system":IPL4 [label="RTP_CODEC_PT"]
35 "ConnHdlr":RTPEM_DATA -> "RTP_Emulation_CT":DATA
36 "ConnHdlr":RTPEM_CTRL -> "RTP_Emulation_CT":CTRL
37
38 "IPA_Emulation_CT" [
39 shape = "record"
40 label = "<f0> IPA_Emulation_CT | <MTP3_SP_PORT> MTP3_SP_PORT | <IPA_MGCP_PORT> IPA_MGCP_PORT | <IPA_RSL_PORT> IPA_RSL_PORT | <IPA_OML_PORT> IPA_OML_PORT | <IPA_CTRL_PORT> IPA_CTRL_PORT | <IPA_GSUP_PORT> IPA_GSUP_PORT | <IPA_RSPRO_PORT> IPA_RSPRO_PORT | <IPA_OSMO_PCU_PORT> IPA_OSMO_PCU_PORT | <IPA_SP_PORT> IPA_SP_PORT | <IPA_PORT> IPA_PORT"
41 ];
Harald Weltecfbc4b72021-12-21 15:41:17 +010042 "IPA_Emulation_CT":IPA_PORT -> "system":IPL4 [label="IPA_CODEC_PT"]
Harald Welte16872ad2021-12-21 15:27:04 +010043
44
45 "system" [
46 shape = "record"
47 label = "<f0> system | <IPL4> IPL4 | <UD> UD | <TELNET> TELNET"
48 ];
49}