blob: 97357d794a0b85dfd812f3f84b48e8739d567a2a [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"
25#include "linuxlist.h"
26#include "select.h"
27
Harald Welte404cdd82009-03-10 12:21:45 +000028#include <vty/vty.h>
29
Holger Freyther219518d2009-01-02 22:04:43 +000030#define TELNET_COMMAND_48 1
31#define TELNET_COMMAND_11 2
32
33struct telnet_connection {
34 struct llist_head entry;
35 struct gsm_network *network;
36 struct bsc_fd fd;
Harald Welte404cdd82009-03-10 12:21:45 +000037 struct vty *vty;
38
Holger Freytherf87573d2009-01-04 03:49:41 +000039 int bts;
Holger Freyther219518d2009-01-02 22:04:43 +000040
41 int command;
42 char *imsi;
43 char commands[1024];
44 int read;
45};
46
47
48void telnet_init(struct gsm_network *network, int port);
49
Harald Welte703af982009-05-23 06:14:44 +000050int bsc_vty_init(struct gsm_network *net);
51
Holger Freyther219518d2009-01-02 22:04:43 +000052#endif