|
@@ -38,7 +38,7 @@ Session::Session(boost::asio::ip::tcp::socket socket,
|
|
|
|
|
|
// Initialize the director
|
|
// Initialize the director
|
|
director.to_server = boost::bind(&Session::to_server, this, _1);
|
|
director.to_server = boost::bind(&Session::to_server, this, _1);
|
|
- director.to_client = boost::bind(&Session::to_client, this, _1);
|
|
|
|
|
|
+ director.to_client = boost::bind(&Session::to_client, this, _1, true);
|
|
director.post = boost::bind(&Session::post, this, _1);
|
|
director.post = boost::bind(&Session::post, this, _1);
|
|
|
|
|
|
// too soon!
|
|
// too soon!
|
|
@@ -216,7 +216,7 @@ void Session::process_lines(std::string &received) {
|
|
int rlen = rm[0].length();
|
|
int rlen = rm[0].length();
|
|
if (director.show_client) {
|
|
if (director.show_client) {
|
|
line = received.substr(0, rpos + rlen);
|
|
line = received.substr(0, rpos + rlen);
|
|
- to_client(line);
|
|
|
|
|
|
+ to_client(line, false);
|
|
}
|
|
}
|
|
received = rm.suffix();
|
|
received = rm.suffix();
|
|
}
|
|
}
|
|
@@ -247,7 +247,7 @@ void Session::process_lines(std::string &received) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- to_client(line);
|
|
|
|
|
|
+ to_client(line, false);
|
|
}
|
|
}
|
|
received = received.substr(rpos + 1);
|
|
received = received.substr(rpos + 1);
|
|
|
|
|
|
@@ -286,7 +286,7 @@ void Session::process_lines(std::string &received) {
|
|
|
|
|
|
if (!received.empty())
|
|
if (!received.empty())
|
|
if (director.show_client) {
|
|
if (director.show_client) {
|
|
- to_client(received);
|
|
|
|
|
|
+ to_client(received, false);
|
|
// std::string clean = clean_string(received);
|
|
// std::string clean = clean_string(received);
|
|
// BUGZ_LOG(error) << "show_client/leftovers:" << clean;
|
|
// BUGZ_LOG(error) << "show_client/leftovers:" << clean;
|
|
}
|
|
}
|
|
@@ -505,13 +505,15 @@ void Session::client_read(void) {
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
-void Session::to_client(const std::string &message) {
|
|
|
|
|
|
+void Session::to_client(const std::string &message, bool log) {
|
|
auto self(shared_from_this());
|
|
auto self(shared_from_this());
|
|
// output the cleaned string (so I can see what we're sending in the
|
|
// output the cleaned string (so I can see what we're sending in the
|
|
// logs)
|
|
// logs)
|
|
|
|
|
|
- std::string clean = clean_string(message);
|
|
|
|
- BUGZ_LOG(trace) << "2C: " << clean;
|
|
|
|
|
|
+ if (log) {
|
|
|
|
+ std::string clean = clean_string(message);
|
|
|
|
+ BUGZ_LOG(trace) << "2C: " << clean;
|
|
|
|
+ }
|
|
|
|
|
|
boost::asio::async_write(
|
|
boost::asio::async_write(
|
|
socket_, boost::asio::buffer(message),
|
|
socket_, boost::asio::buffer(message),
|