blob: b7a274c922eb3ca265efdfb9074fae83baecf28d [file] [log] [blame]
Oliver Smith6dbdf142019-12-10 13:21:11 +01001#!/usr/bin/env python3
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +02002
3# (C) 2013 by Katerina Barone-Adesi <kat.obsc@gmail.com>
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13
14# You should have received a copy of the GNU General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>
16
Oliver Smitha7ec3692019-10-29 15:37:19 +010017import os
18
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +020019app_configs = {
Oliver Smitha7ec3692019-10-29 15:37:19 +010020 "msc": ["doc/examples/osmo-msc/osmo-msc.cfg"],
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +020021}
22
Oliver Smitha7ec3692019-10-29 15:37:19 +010023if os.environ["IU"] == "1":
24 app_configs["msc"] += ["doc/examples/osmo-msc/osmo-msc_custom-sccp.cfg",
25 "doc/examples/osmo-msc/osmo-msc_multi-cs7.cfg"]
26
Neels Hofmeyrbac22762017-07-06 18:39:28 +020027apps = [(4254, "src/osmo-msc/osmo-msc", "OsmoMSC", "msc"),
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +020028 ]
29
Neels Hofmeyr84da6b12016-05-20 21:59:55 +020030vty_command = ["./src/osmo-msc/osmo-msc", "-c",
31 "doc/examples/osmo-msc/osmo-msc.cfg"]
Katerina Barone-Adesie0aee7a2013-04-05 17:36:09 +020032
Neels Hofmeyrbac22762017-07-06 18:39:28 +020033vty_app = apps[0] # reference apps[] entry for osmo-msc