blob: 48dbb487bb3658bbf3f8ae5dca5450bfd09fb666 [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,
30 CELLMGR_NODE,
31 SS7_NODE,
32 LINKSETS_NODE,
33 LINK_NODE,
34 MSC_NODE,
35 APP_NODE,
36};
37
38extern struct cmd_element cfg_description_cmd;
39extern struct cmd_element cfg_no_description_cmd;
40
41
42#endif