1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#include "bbs.h"
static TelnetCtx telnet_ctx;
static char raw_connection = 0;
#ifdef DETECT_CLIENT
extern void UpdateClientCode(unsigned char c);
static void
telnet_cb_update_client_code(void *cc_arg, unsigned char c)
{
UpdateClientCode(c);
}
#endif
static void
telnet_cb_resize_term(void *resize_arg, int w, int h)
{
term_resize(w, h);
}
const static struct TelnetCallback telnet_callback = {
NULL,
telnet_cb_resize_term,
#ifdef DETECT_CLIENT
telnet_cb_update_client_code,
#else
NULL,
#endif
};
void
telnet_init(int do_init_cmd)
{
int fd = 0;
TelnetCtx *ctx = &telnet_ctx;
raw_connection = 1;
telnet_ctx_init(ctx, &telnet_callback, fd);
#ifdef DETECT_CLIENT
telnet_ctx_set_cc_arg(ctx, (void*)1);
#endif
if (do_init_cmd)
telnet_ctx_send_init_cmds(ctx);
}
/* tty_read
* read from tty, process telnet commands if raw connection.
* return: >0 = length, <=0 means read more, abort/eof is automatically processed.
*/
ssize_t
tty_read(unsigned char *buf, size_t max)
{
ssize_t l = read(0, buf, max);
TelnetCtx *ctx = &telnet_ctx;
if(l == 0 || (l < 0 && !(errno == EINTR || errno == EAGAIN)))
abort_bbs(0);
if(!raw_connection || l <= 0)
return l;
l = telnet_process(ctx, buf, l);
return l;
}
void
telnet_turnoff_client_detect(void)
{
TelnetCtx *ctx = &telnet_ctx;
telnet_ctx_set_cc_arg(ctx, NULL);
}
// vim: sw=4
|