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

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

{% 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"];
  ATS -> MGW [label="MGCP"];
  MGW -> ATS [label="RTP"];
}
%}