blob: 837455585eb76b22e5ccd260fa78c3373b26f85e [file] [log] [blame]
Harald Welte03b179f2021-12-21 13:15:45 +01001digraph G {
2 rankdir = LR;
3 label = "RAN_Emulation when used with AoIP as in MSC_Tests";
4
5 "RAN_ConnHdlr" [
6 shape = "record"
7 label = "<f0> RAN_ConnHdlr | <BSSAP> BSSAP | <BSSAP_PROC> BSSAP_PROC"
8 ];
9
10 "RAN_Emulation_CT" [
11 shape = "record"
Harald Welte233e3e12021-12-21 15:32:27 +010012 label = "<f0> RAN_Emulation_CT | <MGCP> MGCP | <CTRL> CTRL | <CTRL_CLIENT> CTRL_CLIENT | <CLIENT> CLIENT | <PROC> PROC | <BSSAP> BSSAP | <RANAP> RANAP"
Harald Welte03b179f2021-12-21 13:15:45 +010013 ];
14
15 "SCCP_CT" [
16 shape = "record"
17 label = "<f0> SCCP_CT | <MTP3_SCCP_PORT> MTP3_SCCP_PORT | <SCCP_SP_PORT> SCCP_SP_PORT"
18 ];
19
20 "M3UA_CT" [
21
22 shape = "record"
23 label = "<f0> M3UA_CT | <STCP_PORT> SCTP_PORT | <MTP3_SP_PORT> MTP3_SP_PORT"
24 ];
25
26 "system" [
27 shape = "record"
28 label = "<f0> system | <SCTP> SCTP"
29 ];
30
31 "RAN_ConnHdlr":BSSAP -> "RAN_Emulation_CT":CLIENT
32 "RAN_ConnHdlr":BSSAP_PROC -> "RAN_Emulation_CT":PROC
33
34 "RAN_Emulation_CT":BSSAP -> "SCCP_CT":SCCP_SP_PORT
35 "RAN_Emulation_CT":RANAP -> "SCCP_CT":SCCP_SP_PORT
36
37 "SCCP_CT":MTP3_SCCP_PORT -> "M3UA_CT":MTP3_SP_PORT
38 "M3UA_CT":SCTP_PORT -> "system":SCTP
39}