libosmovty 1.9.0.196-9975
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/defs.h>
23#include <osmocom/core/select.h>
24
25#include <osmocom/vty/vty.h>
26
36 void *priv;
38 struct osmo_fd fd;
40 struct vty *vty;
42 struct log_target *dbg;
43};
44
45int telnet_init_default(void *tall_ctx, void *priv, int default_port);
46
47int telnet_init(void *tall_ctx, void *priv, int port)
48 OSMO_DEPRECATED("This function ignores dynamic port configuration. Use telnet_init_default() instead");
49int telnet_init_dynif(void *tall_ctx, void *priv, const char *ip, int port)
50 OSMO_DEPRECATED("This function ignores dynamic port configuration. Use telnet_init_default() instead");
51
52void telnet_exit(void);
53
int telnet_init(void *tall_ctx, void *priv, int port) OSMO_DEPRECATED("This function ignores dynamic port configuration. Use telnet_init_default() instead")
Initialize telnet based VTY interface listening to 127.0.0.1.
Definition: telnet_interface.c:98
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:120
void telnet_exit(void)
Close all telnet connections and release the telnet socket.
Definition: telnet_interface.c:266
int telnet_init_dynif(void *tall_ctx, void *priv, const char *ip, int port) OSMO_DEPRECATED("This function ignores dynamic port configuration. Use telnet_init_default() instead")
Initialize telnet based VTY interface.
Definition: telnet_interface.c:110
#define OSMO_DEPRECATED(text)
A telnet connection.
Definition: telnet_interface.h:32
struct log_target * dbg
logging target associated with this telnet connection
Definition: telnet_interface.h:42
void * priv
private data pointer passed through
Definition: telnet_interface.h:36
struct llist_head entry
linked list header for internal management
Definition: telnet_interface.h:34
struct osmo_fd fd
filedsecriptor (socket )
Definition: telnet_interface.h:38
struct vty * vty
VTY instance associated with telnet connection.
Definition: telnet_interface.h:40
Internal representation of a single VTY.
Definition: vty.h:60