libosmovty  1.7.0
Osmocom VTY library
telnet_interface.h
Go to the documentation of this file.
1 
3 /*
4  * (C) 2009 by Holger Hans Peter Freyther <zecke@selfish.org>
5  * All Rights Reserved
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  */
18 
19 #pragma once
20 
21 #include <osmocom/core/logging.h>
22 #include <osmocom/core/select.h>
23 
24 #include <osmocom/vty/vty.h>
25 
33  struct llist_head entry;
35  void *priv;
37  struct osmo_fd fd;
39  struct vty *vty;
41  struct log_target *dbg;
42 };
43 
44 int telnet_init(void *tall_ctx, void *priv, int port);
45 int telnet_init_dynif(void *tall_ctx, void *priv, const char *ip, int port);
46 int telnet_init_default(void *tall_ctx, void *priv, int default_port);
47 
48 void telnet_exit(void);
49 
telnet_connection::dbg
struct log_target * dbg
logging target associated with this telnet connection
Definition: telnet_interface.h:41
telnet_connection::priv
void * priv
private data pointer passed through
Definition: telnet_interface.h:35
telnet_connection::entry
struct llist_head entry
linked list header for internal management
Definition: telnet_interface.h:33
vty.h
log_target
telnet_connection
A telnet connection.
Definition: telnet_interface.h:31
telnet_init
int telnet_init(void *tall_ctx, void *priv, int port)
Initialize telnet based VTY interface listening to 127.0.0.1.
Definition: telnet_interface.c:68
telnet_connection::fd
struct osmo_fd fd
filedsecriptor (socket )
Definition: telnet_interface.h:37
vty
Internal representation of a single VTY.
Definition: vty.h:74
telnet_init_dynif
int telnet_init_dynif(void *tall_ctx, void *priv, const char *ip, int port)
Initialize telnet based VTY interface.
Definition: telnet_interface.c:79
telnet_init_default
int telnet_init_default(void *tall_ctx, void *priv, int default_port)
Initializes telnet based VTY interface using the configured bind addr/port.
Definition: telnet_interface.c:109
llist_head
telnet_connection::vty
struct vty * vty
VTY instance associated with telnet connection.
Definition: telnet_interface.h:39
osmo_fd
logging.h
select.h
telnet_exit
void telnet_exit(void)
Close all telnet connections and release the telnet socket.
Definition: telnet_interface.c:255