aboutsummaryrefslogtreecommitdiffstats
path: root/mgw/README.md
blob: 86f0eeeab29e4826b864af716392600fdce39092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# MGW_Test.ttcn

* external interfaces
    * MGCP (emulates call agent)
    * RTP (stream source/sink)
    * Osmux (stream source/sink)
    * VTY

{% dot mgw_tests.svg
digraph G {
  rankdir=LR;
  MGW [label="IUT\nosmo-mgw",shape="box"];
  ATS [label="ATS\nMGCP_Test.ttcn"];

  ATS -> MGW [label="RTP", dir="both"];
  ATS -> MGW [label="Osmux", dir="both"];
  ATS -> MGW [label="MGCP"];
  ATS -> MGW [label="VTY"];
}
%}