blob: 36fef63fa0ee845d5d92971aec50cae20ed8c4e5 [file] [log] [blame]
Oliver Smith7aa63022019-12-10 14:43:01 +01001#!/usr/bin/env python3
Holger Hans Peter Freyther0b4b8242016-09-08 15:09:16 +02002
3# (C) 2016 by Holger Hans Peter Freyther
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
17app_configs = {
Oliver Smithfdd62da2019-12-10 15:04:22 +010018 "osmo-pcap-client": ["doc/examples/osmo-pcap-client/osmo-pcap-client.cfg",
19 "doc/examples/osmo-pcap-client/osmo-pcap-client-tls.cfg"],
20 "osmo-pcap-server": ["doc/examples/osmo-pcap-server/osmo-pcap-server.cfg",
21 "doc/examples/osmo-pcap-server/osmo-pcap-server-tls.cfg"]
Holger Hans Peter Freyther0b4b8242016-09-08 15:09:16 +020022}
23
24apps = [
Oliver Smitheedd83c2021-08-05 18:54:19 +020025 (4228, "src/osmo-pcap-server", "OsmoPCAPServer", "osmo-pcap-server"),
26 (4227, "src/osmo-pcap-client", "OsmoPCAPClient", "osmo-pcap-client"),
Holger Hans Peter Freyther0b4b8242016-09-08 15:09:16 +020027 ]
28
Oliver Smithfdd62da2019-12-10 15:04:22 +010029vty_command = ["src/osmo-pcap-server", "-c", "doc/examples/osmo-pcap-server/osmo-pcap-server.cfg"]
Holger Hans Peter Freyther0b4b8242016-09-08 15:09:16 +020030vty_app = apps[0]
31
32