|
@@ -204,6 +204,9 @@ what was just added to server_prompt.
|
|
|
|
|
|
What about \r, \b ? Should that "reset" the server_prompt?
|
|
What about \r, \b ? Should that "reset" the server_prompt?
|
|
|
|
|
|
|
|
+\r should not, because it is followed by \n (eventually)
|
|
|
|
+and that completes my line.
|
|
|
|
+
|
|
*/
|
|
*/
|
|
void Session::process_lines(std::string &received) {
|
|
void Session::process_lines(std::string &received) {
|
|
// break server_prompt into lines and send/process one by one.
|
|
// break server_prompt into lines and send/process one by one.
|
|
@@ -302,11 +305,15 @@ void Session::process_lines(std::string &received) {
|
|
// BUGZ_LOG(error) << "show_client/leftovers:" << clean;
|
|
// BUGZ_LOG(error) << "show_client/leftovers:" << clean;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ // This is eating the entire string. String is partial line
|
|
|
|
+ // portcim line, ending with '\r', this eats the line.
|
|
|
|
+ /*
|
|
// check the server prompt here:
|
|
// check the server prompt here:
|
|
if ((pos = server_prompt.rfind('\r')) != std::string::npos) {
|
|
if ((pos = server_prompt.rfind('\r')) != std::string::npos) {
|
|
// server_prompt contains \r, remove it.
|
|
// server_prompt contains \r, remove it.
|
|
server_prompt = server_prompt.substr(pos + 1);
|
|
server_prompt = server_prompt.substr(pos + 1);
|
|
}
|
|
}
|
|
|
|
+ */
|
|
|
|
|
|
while ((pos = server_prompt.find('\b')) != std::string::npos) {
|
|
while ((pos = server_prompt.find('\b')) != std::string::npos) {
|
|
// backspace? OK! (unless)
|
|
// backspace? OK! (unless)
|