|
@@ -122,6 +122,9 @@ void Session::on_connect(const boost::system::error_code error) {
|
|
|
} else {
|
|
|
to_server(rlogin_auth);
|
|
|
}
|
|
|
+ } else {
|
|
|
+ // server_telnet. Step 1: negotiate a telnet connection with TWGS.
|
|
|
+ director.show_client = false;
|
|
|
}
|
|
|
|
|
|
server_read();
|
|
@@ -238,6 +241,12 @@ void Session::process_lines(std::string &received) {
|
|
|
std::string clean = clean_string(line);
|
|
|
BUGZ_LOG(error) << "rpos/show_client:" << clean;
|
|
|
*/
|
|
|
+ if (server_telnet) {
|
|
|
+ if (line.find('\xff') != std::string::npos) {
|
|
|
+ remove_telnet_commands(line);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
to_client(line);
|
|
|
}
|
|
|
received = received.substr(rpos + 1);
|
|
@@ -322,18 +331,20 @@ void Session::on_server_prompt(const std::string &prompt,
|
|
|
BUGZ_LOG(warning) << "SP: [" << temp << "]";
|
|
|
director.server_prompt(prompt, raw_prompt);
|
|
|
if (server_telnet) {
|
|
|
- std::string ayt = std::string( (const char *)"\x00\xff\xfd\xf6", 4 );
|
|
|
+ std::string ayt = std::string((const char *)"\x00\xff\xfd\xf6", 4);
|
|
|
std::string ayt_resp = std::string((const char *)"\xff\xfb\x00", 3);
|
|
|
- std::string ayt2 = std::string( (const char *)"\xff\xfb\x00", 3);
|
|
|
+ std::string ayt2 = std::string((const char *)"\xff\xfb\x00", 3);
|
|
|
std::string ayt2_resp = std::string((const char *)"\xff\xfd\x00", 3);
|
|
|
|
|
|
/*
|
|
|
for( const char & c : prompt ) {
|
|
|
- BUGZ_LOG(fatal) << "IS? " << (unsigned int)c << " " << std::hex << (unsigned int)c;
|
|
|
+ BUGZ_LOG(fatal) << "IS? " << (unsigned int)c << " " << std::hex <<
|
|
|
+ (unsigned int)c;
|
|
|
}
|
|
|
|
|
|
for( const char & c : ayt ) {
|
|
|
- BUGZ_LOG(fatal) << "AYT? " << (unsigned int)c << " " << std::hex << (unsigned int)c;
|
|
|
+ BUGZ_LOG(fatal) << "AYT? " << (unsigned int)c << " " << std::hex <<
|
|
|
+ (unsigned int)c;
|
|
|
}
|
|
|
*/
|
|
|
|
|
@@ -346,6 +357,8 @@ void Session::on_server_prompt(const std::string &prompt,
|
|
|
to_server(ayt2_resp);
|
|
|
BUGZ_LOG(fatal) << "AYT2??";
|
|
|
server_prompt.clear();
|
|
|
+ // let the user see what is happening... We're done negotiating (I think)
|
|
|
+ director.show_client = true;
|
|
|
}
|
|
|
}
|
|
|
}
|