blob: a0368bd29124a168f2f9247f42d56c3d1e17f8bf [file] [log] [blame]
Holger Hans Peter Freyther71760302011-02-22 20:57:08 +01001/*
2 * (C) 2011 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * (C) 2011 by On-Waves
4 * All Rights Reserved
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
15 *
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 *
19 */
20
21#ifndef SS7_VTY_H
22#define SS7_VTY_H
23
24#include <osmocom/vty/vty.h>
25#include <osmocom/vty/buffer.h>
26#include <osmocom/vty/command.h>
27
28enum ss7_vty_node {
29 MGCP_NODE = _LAST_OSMOVTY_NODE + 1,
Holger Hans Peter Freytherdcc33122011-03-01 01:24:10 +010030 TRUNK_NODE,
Holger Hans Peter Freyther71760302011-02-22 20:57:08 +010031 CELLMGR_NODE,
32 SS7_NODE,
33 LINKSETS_NODE,
34 LINK_NODE,
35 MSC_NODE,
36 APP_NODE,
37};
38
39extern struct cmd_element cfg_description_cmd;
40extern struct cmd_element cfg_no_description_cmd;
41
42
43#endif