Sfoglia il codice sorgente

Clean up the telnet negotiation in server_telnet.

Steve Thielemann 3 anni fa
parent
commit
806659d269
3 ha cambiato i file con 27 aggiunte e 4 eliminazioni
  1. 17 4
      session.cpp
  2. 8 0
      utils.cpp
  3. 2 0
      utils.h

+ 17 - 4
session.cpp

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

+ 8 - 0
utils.cpp

@@ -167,3 +167,11 @@ void str_toupper(std::string &str) {
 void str_tolower(std::string &str) {
 void str_tolower(std::string &str) {
   std::transform(str.begin(), str.end(), str.begin(), ::tolower);
   std::transform(str.begin(), str.end(), str.begin(), ::tolower);
 }
 }
+
+void remove_telnet_commands(std::string &text) {
+  size_t pos;
+
+  while ( ( pos = text.find('\xff')) != std::string::npos ) {
+    text.erase(pos, pos+3 );
+  }
+}

+ 2 - 0
utils.h

@@ -28,4 +28,6 @@ bool at_planet_prompt(const std::string &prompt);
 void str_toupper(std::string &text);
 void str_toupper(std::string &text);
 void str_tolower(std::string &text);
 void str_tolower(std::string &text);
 
 
+void remove_telnet_commands(std::string &text);
+
 #endif
 #endif