aboutsummaryrefslogtreecommitdiff
path: root/src/protocoltelnet.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocoltelnet.cpp')
-rw-r--r--src/protocoltelnet.cpp131
1 files changed, 131 insertions, 0 deletions
diff --git a/src/protocoltelnet.cpp b/src/protocoltelnet.cpp
new file mode 100644
index 0000000..b0209db
--- /dev/null
+++ b/src/protocoltelnet.cpp
@@ -0,0 +1,131 @@
1#include "bu/protocoltelnet.h"
2#include "bu/client.h"
3
4#define CODE_SE '\xf0' /**< End of subnegotiation params. */
5#define CODE_NOP '\xf1' /**< No operation (keep-alive). */
6#define CODE_DM '\xf2' /**< Datastream side of a Synch. */
7#define CODE_BRK '\xf3' /**< Break character. */
8#define CODE_IP '\xf4' /**< Interrupt Process character. */
9#define CODE_AO '\xf5' /**< Abort Output character. */
10#define CODE_AYT '\xf6' /**< Are You There? character. */
11#define CODE_EC '\xf7' /**< Erase Character character. */
12#define CODE_EL '\xf8' /**< Erase Line character. */
13#define CODE_GA '\xf9' /**< Go Ahead signal. */
14#define CODE_SB '\xfa' /**< Begin subnegotiation options. */
15#define CODE_WILL '\xfb' /**< Desire to do something. */
16#define CODE_WONT '\xfc' /**< Refuse to perform. */
17#define CODE_DO '\xfd' /**< Request option. */
18#define CODE_DONT '\xfe' /**< Demand a stop. */
19
20#define CODE_IAC '\xff' /**< Interpret-As-Command. */
21
22#define OPT_BINARY '\x00' /**< Binary mode (file transfers?). */
23#define OPT_ECHO '\x01' /**< (local) Echo mode. */
24
25Bu::ProtocolTelnet::ProtocolTelnet() :
26 oBinary( *this, OPT_BINARY ),
27 oEcho( *this, OPT_ECHO )
28{
29}
30
31Bu::ProtocolTelnet::~ProtocolTelnet()
32{
33}
34
35void Bu::ProtocolTelnet::onNewConnection( Bu::Client *pClient )
36{
37}
38
39void Bu::ProtocolTelnet::onNewData( Bu::Client *pClient )
40{
41}
42
43
44
45Bu::ProtocolTelnet::Option::Option( Bu::ProtocolTelnet &rPT, char cCode ) :
46 rPT( rPT ),
47 fOpts( 0 ),
48 cCode( cCode )
49{
50 rPT.hOpts.insert( cCode, this );
51}
52
53Bu::ProtocolTelnet::Option::~Option()
54{
55}
56
57void Bu::ProtocolTelnet::Option::localEnable( bool bSet )
58{
59 if( bSet == (bool)(!(fOpts&fLocalCant)) ) return;
60
61 if( bSet )
62 fOpts &= ~fLocalCant;
63 else
64 fOpts |= fLocalCant;
65}
66
67void Bu::ProtocolTelnet::Option::localSet( bool bSet )
68{
69 if( bSet == (bool)(fOpts&fLocalIs) ) return;
70
71 char buf[2];
72
73 if( bSet )
74 {
75 buf[0] = CODE_WILL;
76 buf[1] = cCode;
77 rPT.pClient->write( buf, 2 );
78 }
79 else
80 {
81 buf[0] = CODE_WONT;
82 buf[1] = cCode;
83 rPT.pClient->write( buf, 2 );
84 }
85}
86
87bool Bu::ProtocolTelnet::Option::isLocalEnabled()
88{
89 return (bool)(!(fOpts&fLocalCant));
90}
91
92bool Bu::ProtocolTelnet::Option::isLocalSet()
93{
94 return (bool)(fOpts&fLocalIs);
95}
96
97void Bu::ProtocolTelnet::Option::remoteEnable( bool bSet )
98{
99 return;
100}
101
102void Bu::ProtocolTelnet::Option::remoteSet( bool bSet )
103{
104 if( bSet == (bool)(fOpts&fRemoteIs) ) return;
105
106 char buf[2];
107
108 if( bSet )
109 {
110 buf[0] = CODE_DO;
111 buf[1] = cCode;
112 rPT.pClient->write( buf, 2 );
113 }
114 else
115 {
116 buf[0] = CODE_DONT;
117 buf[1] = cCode;
118 rPT.pClient->write( buf, 2 );
119 }
120}
121
122bool Bu::ProtocolTelnet::Option::isRemoteEnabled()
123{
124 return (bool)(!(fOpts&fRemoteCant));
125}
126
127bool Bu::ProtocolTelnet::Option::isRemoteSet()
128{
129 return (bool)(fOpts&fRemoteIs);
130}
131