|
@@ -2,13 +2,15 @@
|
|
#include <iostream>
|
|
#include <iostream>
|
|
|
|
|
|
#include <boost/format.hpp>
|
|
#include <boost/format.hpp>
|
|
-#include <boost/log/core.hpp>
|
|
|
|
-#include <boost/log/trivial.hpp>
|
|
|
|
|
|
+// #include <boost/log/core.hpp>
|
|
|
|
+// #include <boost/log/trivial.hpp>
|
|
|
|
+
|
|
|
|
|
|
#include <regex>
|
|
#include <regex>
|
|
|
|
|
|
#include "config.h"
|
|
#include "config.h"
|
|
#include "session.h"
|
|
#include "session.h"
|
|
|
|
+#include "logging.h"
|
|
|
|
|
|
#include <string>
|
|
#include <string>
|
|
|
|
|
|
@@ -67,7 +69,7 @@ std::string clean_string(const std::string &source) {
|
|
Session::Session(boost::asio::ip::tcp::socket socket,
|
|
Session::Session(boost::asio::ip::tcp::socket socket,
|
|
boost::asio::io_service &io_service, std::string hostname,
|
|
boost::asio::io_service &io_service, std::string hostname,
|
|
std::string port)
|
|
std::string port)
|
|
- : socket_(std::move(socket)), io_service_{io_service},
|
|
|
|
|
|
+ : direct{this}, socket_(std::move(socket)), io_service_{io_service},
|
|
resolver_{io_service}, server_{io_service}, timer_{io_service},
|
|
resolver_{io_service}, server_{io_service}, timer_{io_service},
|
|
keep_alive_{io_service}, host{hostname}, port{port} {
|
|
keep_alive_{io_service}, host{hostname}, port{port} {
|
|
// server_sent = 0;
|
|
// server_sent = 0;
|