blob: fce58fb637407cd7cf2199092825097e0a22509b [file] [log] [blame]
Holger Hans Peter Freyther0b4b8242016-09-08 15:09:16 +02001#!/usr/bin/env python
2
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 = {
18 "osmo-pcap-client": ["contrib/osmo-pcap-client.cfg"],
19 "osmo-pcap-server": ["contrib/osmo-pcap-server.cfg"]
20}
21
22apps = [
23 (4241, "src/osmo_pcap_server", "OsmoPCAPServer", "osmo-pcap-server"),
24 (4240, "src/osmo_pcap_client", "OsmoPCAPClient", "osmo-pcap-client"),
25 ]
26
27vty_command = ["src/osmo_pcap_server", "-c", "contrib/osmo-pcap-server.cfg"]
28vty_app = apps[0]
29
30