blob: 228b6231f57e938047084b6ac4ebd249bc49c19d [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
28#define TELNET_COMMAND_48 1
29#define TELNET_COMMAND_11 2
30
31struct telnet_connection {
32 struct llist_head entry;
33 struct gsm_network *network;
34 struct bsc_fd fd;
Holger Freytherf87573d2009-01-04 03:49:41 +000035 int bts;
Holger Freyther219518d2009-01-02 22:04:43 +000036
37 int command;
38 char *imsi;
39 char commands[1024];
40 int read;
41};
42
43
44void telnet_init(struct gsm_network *network, int port);
45
46#endif