blob: b8c36b6a18144a2eb5d339c66546dcdb9ae7316b [file] [log] [blame]
Holger Freyther219518d2009-01-02 22:04:43 +00001/* minimalistic telnet/network interface it might turn into a wire interface */
2/* (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
3 * All Rights Reserved
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 */
20
21#ifndef TELNET_INTERFACE_H
22#define TELNET_INTERFACE_H
23
24#include "gsm_data.h"
Harald Weltedc5062b2010-03-26 21:28:59 +080025#include <openbsc/debug.h>
Harald Weltedfe6c7d2010-02-20 16:24:02 +010026#include <osmocore/select.h>
Holger Freyther219518d2009-01-02 22:04:43 +000027
Harald Welte404cdd82009-03-10 12:21:45 +000028#include <vty/vty.h>
29
Holger Freyther219518d2009-01-02 22:04:43 +000030struct telnet_connection {
31 struct llist_head entry;
32 struct gsm_network *network;
33 struct bsc_fd fd;
Harald Welte404cdd82009-03-10 12:21:45 +000034 struct vty *vty;
Harald Weltedc5062b2010-03-26 21:28:59 +080035 struct log_target *dbg;
Holger Freyther219518d2009-01-02 22:04:43 +000036};
37
38
39void telnet_init(struct gsm_network *network, int port);
40
Harald Welte703af982009-05-23 06:14:44 +000041int bsc_vty_init(struct gsm_network *net);
42
Holger Freyther219518d2009-01-02 22:04:43 +000043#endif