blob: f9457e2eac8b090a67b5e6f531a8ee201baf9b5a (
plain)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/*
* Copyright (C) 2007-2008 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
#include "bu/server.h"
#include "bu/protocoltelnet.h"
#include "bu/client.h"
class MyTelnet : public Bu::ProtocolTelnet
{
public:
MyTelnet()
{
}
virtual ~MyTelnet()
{
}
virtual void onNewConnection( Bu::Client *pClient )
{
Bu::ProtocolTelnet::onNewConnection( pClient );
//oNAWS.remoteSet();
oEcho.localSet();
oSuppressGA.remoteSet( true );
oSuppressGA.localSet( true );
setCanonical();
}
virtual void onSubNAWS( uint16_t iWidth, uint16_t iHeight )
{
printf("New dim = (%dx%d)\n", iWidth, iHeight );
}
virtual void gotLine( Bu::FString &sLine )
{
printf("Line: \"%s\"\n", sLine.getStr() );
write("\n\r", 2 );
}
private:
};
class TelServer : public Bu::Server
{
public:
TelServer()
{
}
virtual ~TelServer()
{
}
virtual void onNewConnection( Bu::Client *pClient, int )
{
printf("New connection.\n");
pClient->setProtocol( new MyTelnet() );
}
virtual void onClosedConnection( Bu::Client *pClient )
{
printf("Lost connection.\n");
delete pClient->getProtocol();
}
private:
};
int main()
{
TelServer ts;
ts.addPort( 4000 );
ts.setTimeout( 0, 5000 );
printf("Initializing server on port: 4000\n");
for(;;)
{
ts.scan();
}
}
|