session.cpp 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715
  1. #include <boost/bind.hpp>
  2. #include <boost/format.hpp>
  3. #include <functional>
  4. #include <iostream>
  5. // #include <boost/log/core.hpp>
  6. // #include <boost/log/trivial.hpp>
  7. #include <regex>
  8. #include <string>
  9. #include "config.h"
  10. #include "galaxy.h"
  11. #include "logging.h"
  12. #include "session.h"
  13. #include "utils.h"
  14. // #include <boost/log/attributes/named_scope.hpp>
  15. Session::Session(boost::asio::ip::tcp::socket socket,
  16. boost::asio::io_service &io_service, std::string hostname,
  17. std::string port, bool server_telnet_)
  18. : server_telnet{server_telnet_},
  19. socket_(std::move(socket)),
  20. io_service_{io_service},
  21. resolver_{io_service},
  22. server_{io_service},
  23. prompt_timer_{io_service},
  24. keep_alive_{io_service},
  25. host{hostname},
  26. port{port} {
  27. BUGZ_LOG(info) << "Session::Session()";
  28. // server_sent = 0;
  29. time_ms = 50;
  30. if (CONFIG["prompt_timeout"]) time_ms = CONFIG["prompt_timeout"].as<int>();
  31. keepalive_secs = 45;
  32. if (CONFIG["keepalive"]) keepalive_secs = CONFIG["keepalive"].as<int>();
  33. // Initialize the director
  34. director.to_server = boost::bind(&Session::to_server, this, _1);
  35. director.to_client = boost::bind(&Session::to_client, this, _1);
  36. director.post = boost::bind(&Session::post, this, _1);
  37. // too soon!
  38. // director.username = rlogin_name;
  39. // replace emit_ with below: if (director.server_line)
  40. // director.server_line(s);
  41. /*
  42. emit_server_line = [this](const std::string &s) {
  43. if (director.server_line) {
  44. director.server_line(s);
  45. }
  46. };
  47. emit_server_prompt = [this](const std::string &s) {
  48. if (director.server_prompt) {
  49. director.server_prompt(s);
  50. }
  51. };
  52. emit_client_input ... => director.client_input
  53. */
  54. }
  55. void Session::start(void) {
  56. BUGZ_LOG(info) << "Session::start()";
  57. // auto self(shared_from_this());
  58. client_read();
  59. }
  60. Session::~Session() { BUGZ_LOG(info) << "~Session"; }
  61. /**
  62. * Returns the current server prompt.
  63. *
  64. * NOTE: This is the raw string from the server, so it can contain
  65. * color codes. Make sure you clean it before trying to test it for
  66. * any text.
  67. *
  68. * @return const std::string&
  69. */
  70. const std::string &Session::get_prompt(void) { return server_prompt; }
  71. void Session::set_prompt(const std::string &prompt) { server_prompt = prompt; }
  72. void Session::post(notifyFunc nf) {
  73. if (nf) {
  74. BUGZ_LOG(info) << "Session::post()";
  75. io_service_.post(nf);
  76. } else {
  77. BUGZ_LOG(error) << "Session::post( nullptr )";
  78. }
  79. }
  80. void Session::parse_auth(void) {
  81. // how many nulls should I be seeing?
  82. // \0user\0pass\0terminal/SPEED\0
  83. // If I don't have a proper rlogin value here, it isn't going
  84. // to work when I try to connect to the rlogin server.
  85. if (rlogin_auth.size() > 10)
  86. rlogin_name = rlogin_auth.c_str() + 1;
  87. else
  88. rlogin_name = "?";
  89. director.username = rlogin_name;
  90. }
  91. void Session::on_connect(const boost::system::error_code error) {
  92. // We've connected to the server! WOOT WOOT!
  93. // BOOST_LOG_NAMED_SCOPE("Session");
  94. if (!error) {
  95. BUGZ_LOG(info) << "Connected to " << host;
  96. to_client("Connected...\n\r");
  97. connected = true;
  98. if (!server_telnet) {
  99. if (rlogin_auth[0] != 0) {
  100. // Ok, the rlogin information was junk --
  101. to_client("Let me make up some fake rlogin data for you...\n\r");
  102. char temp[] = "\0test\0test\0terminal/9600\0";
  103. std::string tmp(temp, sizeof(temp));
  104. to_server(tmp);
  105. } else {
  106. to_server(rlogin_auth);
  107. }
  108. }
  109. server_read();
  110. } else {
  111. std::string output =
  112. str(boost::format("Failed to connect: %1%:%2%\n\r") % host % port);
  113. to_client(output);
  114. BUGZ_LOG(error) << "Failed to connect to " << host << ":" << port;
  115. BUGZ_LOG(warning) << "socket.shutdown()";
  116. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  117. }
  118. }
  119. /**
  120. * Called with the current line received from the server.
  121. *
  122. * This will do server parsing. Sector/Ports/Connecting Sectors.
  123. * Port status/inventory/%.
  124. *
  125. * See \ref split_lines()
  126. * @param line
  127. */
  128. void Session::on_server_line(const std::string &line,
  129. const std::string &raw_line) {
  130. BUGZ_LOG(info) << "SL: [" << line << "]";
  131. director.server_line(line, raw_line);
  132. }
  133. /**
  134. * Split server input into lines.
  135. *
  136. * @param line
  137. */
  138. void Session::split_lines(std::string line) {
  139. // Does this have \n\r still on it? I don't want them.
  140. // cleanup backspaces
  141. size_t pos;
  142. while ((pos = line.find('\b')) != std::string::npos) {
  143. // backspace? OK! (unless)
  144. if (pos == 0) {
  145. // first character, so there's nothing "extra" to erase.
  146. line = line.erase(pos, 1);
  147. } else
  148. line = line.erase(pos - 1, 2);
  149. }
  150. std::string temp = clean_string(line);
  151. on_server_line(temp, line);
  152. }
  153. /*
  154. Call this with whatever we just received.
  155. That will allow me to send "just whatever I got"
  156. this time around, rather then trying to figure out
  157. what was just added to server_prompt.
  158. What about \r, \b ? Should that "reset" the server_prompt?
  159. \r should not, because it is followed by \n (eventually)
  160. and that completes my line.
  161. */
  162. void Session::process_lines(std::string &received) {
  163. // break server_prompt into lines and send/process one by one.
  164. size_t pos, rpos;
  165. server_prompt.append(received);
  166. // I also need to break on r"\x1b[\[0-9;]*JK", treat these like \n
  167. while ((pos = server_prompt.find('\n', 0)) != std::string::npos) {
  168. std::string line;
  169. std::smatch m = ansi_newline(server_prompt);
  170. if (!m.empty()) {
  171. // We found one.
  172. size_t mpos = m.prefix().length();
  173. // int mlen = m[0].length();
  174. if (mpos < pos) {
  175. // Ok, the ANSI newline is before the \n
  176. // perform this process with the received line
  177. std::smatch rm = ansi_newline(received);
  178. if (!rm.empty()) {
  179. size_t rpos = rm.prefix().length();
  180. int rlen = rm[0].length();
  181. if (director.show_client) {
  182. line = received.substr(0, rpos + rlen);
  183. to_client(line);
  184. }
  185. received = rm.suffix();
  186. }
  187. // perform this on the server_prompt line
  188. line = m.prefix();
  189. split_lines(line);
  190. server_prompt = m.suffix();
  191. // redo this loop -- there's still a \n in there
  192. continue;
  193. }
  194. }
  195. // process "line" in received
  196. rpos = received.find('\n', 0);
  197. // get line to send to the client
  198. if (director.show_client) {
  199. // that is, if we're sending to the client!
  200. line = received.substr(0, rpos + 1);
  201. /*
  202. std::string clean = clean_string(line);
  203. BUGZ_LOG(error) << "rpos/show_client:" << clean;
  204. */
  205. to_client(line);
  206. }
  207. received = received.substr(rpos + 1);
  208. // process "line" in server_prompt
  209. line = server_prompt.substr(0, pos + 1);
  210. server_prompt = server_prompt.substr(pos + 1);
  211. // Remove \n for dispatching
  212. std::string part = line.substr(0, pos);
  213. /*
  214. if (server_sent != 0) {
  215. line = line.substr(server_sent);
  216. server_sent = 0;
  217. };
  218. */
  219. // display on?
  220. // to_client(line);
  221. // How should I handle \r in lines? For now, remove it
  222. // but LOG that we did.
  223. replace(part, "\r", "");
  224. /*
  225. if (replace(part, "\r", "")) {
  226. BUGZ_LOG(warning) << "\\r removed from line";
  227. }
  228. */
  229. split_lines(part);
  230. }
  231. // Ok, we have sent all of the \n lines.
  232. if (!received.empty())
  233. if (director.show_client) {
  234. to_client(received);
  235. // std::string clean = clean_string(received);
  236. // BUGZ_LOG(error) << "show_client/leftovers:" << clean;
  237. }
  238. // This is eating the entire string. String is partial line
  239. // portcim line, ending with '\r', this eats the line.
  240. /*
  241. // check the server prompt here:
  242. if ((pos = server_prompt.rfind('\r')) != std::string::npos) {
  243. // server_prompt contains \r, remove it.
  244. server_prompt = server_prompt.substr(pos + 1);
  245. }
  246. */
  247. while ((pos = server_prompt.find('\b')) != std::string::npos) {
  248. // backspace? OK! (unless)
  249. if (pos == 0) {
  250. // first character, so there's nothing "extra" to erase.
  251. server_prompt = server_prompt.erase(pos, 1);
  252. } else
  253. server_prompt = server_prompt.erase(pos - 1, 2);
  254. }
  255. if (!server_prompt.empty()) {
  256. // We have something remaining -- start the timer!
  257. set_prompt_timer();
  258. }
  259. }
  260. void Session::set_prompt_timer(void) {
  261. prompt_timer_.expires_after(std::chrono::milliseconds(time_ms));
  262. prompt_timer_.async_wait(boost::bind(&Session::on_prompt_timeout, this,
  263. boost::asio::placeholders::error));
  264. }
  265. void Session::reset_prompt_timer(void) { prompt_timer_.cancel(); }
  266. // probably no longer needed --
  267. void Session::on_server_prompt(const std::string &prompt,
  268. const std::string &raw_prompt) {
  269. std::string temp = repr(prompt);
  270. BUGZ_LOG(warning) << "SP: [" << temp << "]";
  271. director.server_prompt(prompt, raw_prompt);
  272. if (server_telnet) {
  273. std::string ayt = std::string( (const char *)"\x00\xff\xfd\xf6", 4 );
  274. std::string ayt_resp = std::string((const char *)"\xff\xfb\x00", 3);
  275. std::string ayt2 = std::string( (const char *)"\xff\xfb\x00", 3);
  276. std::string ayt2_resp = std::string((const char *)"\xff\xfd\x00", 3);
  277. /*
  278. for( const char & c : prompt ) {
  279. BUGZ_LOG(fatal) << "IS? " << (unsigned int)c << " " << std::hex << (unsigned int)c;
  280. }
  281. for( const char & c : ayt ) {
  282. BUGZ_LOG(fatal) << "AYT? " << (unsigned int)c << " " << std::hex << (unsigned int)c;
  283. }
  284. */
  285. if (prompt == ayt) {
  286. to_server(ayt_resp);
  287. BUGZ_LOG(fatal) << "AYT?";
  288. server_prompt.clear();
  289. }
  290. if (prompt == ayt2) {
  291. to_server(ayt2_resp);
  292. BUGZ_LOG(fatal) << "AYT2??";
  293. server_prompt.clear();
  294. }
  295. }
  296. }
  297. void Session::on_prompt_timeout(const boost::system::error_code error) {
  298. if (error != boost::asio::error::operation_aborted) {
  299. // Ok, VALID timeout
  300. if (!server_prompt.empty()) {
  301. // Here's what is happening:
  302. // SP: [ESC[2JESC[H]
  303. // which after clean_string is empty.
  304. std::string clean = server_prompt; // clean_string(server_prompt);
  305. ansi_clean(clean);
  306. if (!clean.empty()) {
  307. on_server_prompt(clean, server_prompt);
  308. }
  309. // BUGZ_LOG(trace) << "SP: [" << server_prompt << "]";
  310. }
  311. }
  312. }
  313. void Session::server_read(void) {
  314. auto self(shared_from_this());
  315. boost::asio::async_read(
  316. server_, boost::asio::buffer(server_buffer, sizeof(server_buffer) - 1),
  317. boost::asio::transfer_at_least(1),
  318. [this, self](boost::system::error_code ec, std::size_t length) {
  319. if (!ec) {
  320. // server_buffer[length] = 0;
  321. // server_prompt.append(server_buffer, length);
  322. std::string received(server_buffer, length);
  323. process_lines(received);
  324. /*
  325. I don't believe I need to consume this,
  326. I'm not async_reading from a stream.
  327. */
  328. /*
  329. if (length) {
  330. // std::cout << length << std::endl;
  331. std::cout << "S: " << server_buffer << std::endl;
  332. do_write(server_buffer);
  333. }
  334. */
  335. server_read();
  336. } else {
  337. BUGZ_LOG(warning) << "S: read_failed: socket.shutdown()";
  338. connected = false;
  339. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  340. }
  341. });
  342. }
  343. void Session::on_resolve(
  344. const boost::system::error_code error,
  345. const boost::asio::ip::tcp::resolver::results_type results) {
  346. //
  347. auto self(shared_from_this());
  348. if (!error) {
  349. // Take the first endpoint.
  350. boost::asio::ip::tcp::endpoint const &endpoint = *results;
  351. server_.async_connect(endpoint,
  352. boost::bind(&Session::on_connect, this,
  353. boost::asio::placeholders::error));
  354. } else {
  355. // TO DO:
  356. // BOOST_LOG_NAMED_SCOPE("Session");
  357. BUGZ_LOG(error) << "Unable to resolve: " << host;
  358. std::string output =
  359. str(boost::format("Unable to resolve: %1%\n\r") % host);
  360. to_client(output);
  361. BUGZ_LOG(warning) << "socket.shutdown()";
  362. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  363. }
  364. }
  365. void Session::client_input(const std::string &input) {
  366. std::string temp = repr(input);
  367. BUGZ_LOG(info) << "CI: [" << temp << "]";
  368. director.client_input(input);
  369. #ifdef DECOUPLE
  370. // Is "proxy" active
  371. if (active) {
  372. // do something amazing with the user's input.
  373. } else {
  374. if (input == "\x1b" || input == "~") {
  375. std::string prompt = clean_string(get_prompt());
  376. BUGZ_LOG(trace) << "CI: ACTIVATE prompt shows: [" << prompt << "]";
  377. if (prompt == "Selection (? for menu): ") {
  378. to_client(
  379. "\n\rThere's not much we can do here. Activate in-game at a "
  380. "Command prompt.\n\r");
  381. to_client(get_prompt());
  382. return;
  383. }
  384. // easter-eggs:
  385. if (prompt == "Enter your choice: ") {
  386. to_client(
  387. "\n\r\x1b[1;36mI'd choose \x1b[1;37m`T`\x1b[1;36m, but "
  388. "that's how I was coded.\n\r");
  389. to_client(get_prompt());
  390. return;
  391. }
  392. // easter-egg
  393. if (prompt == "[Pause]") {
  394. to_client(" \x1b[1;36mMeow\x1b[0m\n\r");
  395. to_client(get_prompt());
  396. return;
  397. }
  398. //
  399. // The command prompt that we're looking for:
  400. //
  401. // "Command [TL=00:00:00]:[242] (?=Help)? : "
  402. // the time, and the sector number vary...
  403. if (prompt.substr(0, 9) == "Command [") {
  404. int len = prompt.length();
  405. if (prompt.substr(len - 14) == "] (?=Help)? : ") {
  406. proxy_activate();
  407. /*
  408. to_client("\n\r\x1b[1;34mWELCOME! This is where the proxy would "
  409. "activate.\n\r");
  410. // active = true;
  411. // show_client = true; // because if something comes (unexpected)
  412. // from the server? talk_direct = false;
  413. // but we aren't activating (NNY)
  414. to_client(get_prompt());
  415. */
  416. return;
  417. }
  418. }
  419. // eat this input.
  420. BUGZ_LOG(warning) << "CI: unable to activate, prompt was: [" << prompt
  421. << "]";
  422. return;
  423. }
  424. }
  425. // as the above code matures, talk_direct might get changed.
  426. // keep this part here (and not above).
  427. if (talk_direct) {
  428. to_server(input);
  429. }
  430. if (emit_client_input) {
  431. emit_client_input(input);
  432. }
  433. #endif
  434. }
  435. /*
  436. DispatchSettings Session::save_settings(void) {
  437. DispatchSettings ss{emit_server_line, emit_server_prompt, emit_client_input,
  438. show_client, talk_direct};
  439. return ss;
  440. }
  441. void Session::restore_settings(const DispatchSettings &ss) {
  442. emit_server_line = ss.server_line;
  443. emit_server_prompt = ss.server_prompt;
  444. emit_client_input = ss.client_input;
  445. show_client = ss.show_client;
  446. talk_direct = ss.talk_direct;
  447. }
  448. void Session::proxy_activate(void) {
  449. active = true;
  450. start_keepin_alive(); // kickstart the keepalive timer
  451. main.setNotify([this](void) { this->proxy_deactivate(); });
  452. main.activate();
  453. }
  454. void Session::proxy_deactivate(void) {
  455. // Ok, how do we return?
  456. active = false;
  457. to_client(get_prompt());
  458. // to_client(" \b");
  459. }
  460. */
  461. void Session::client_read(void) {
  462. auto self(shared_from_this());
  463. boost::asio::async_read( // why can't I async_read_some here?
  464. socket_, boost::asio::buffer(read_buffer, sizeof(read_buffer) - 1),
  465. boost::asio::transfer_at_least(1),
  466. [this, self](boost::system::error_code ec, std::size_t length) {
  467. if (!ec) {
  468. // read_buffer[length] = 0;
  469. if (rlogin_auth.empty()) {
  470. // first read should be rlogin information
  471. rlogin_auth.assign(read_buffer, length);
  472. // parse authentication information
  473. parse_auth();
  474. to_client(std::string(1, 0));
  475. to_client("Welcome, ");
  476. to_client(rlogin_name);
  477. to_client("\n\r");
  478. // Activate the connection to the server
  479. /* // this fails, and I'm not sure why. I've used code like this
  480. before. resolver_.async_resolve( host, port, std::bind(
  481. &Session::on_resolve, this, _1, _2)); */
  482. // This example shows using boost::bind, which WORKS.
  483. // https://stackoverflow.com/questions/6025471/bind-resolve-handler-to-resolver-async-resolve-using-boostasio
  484. resolver_.async_resolve(
  485. host, port,
  486. boost::bind(&Session::on_resolve, this,
  487. boost::asio::placeholders::error,
  488. boost::asio::placeholders::iterator));
  489. } else if (length) {
  490. // Proxy Active?
  491. // BOOST_LOG_NAMED_SCOPE("Session");
  492. std::string line(read_buffer, length);
  493. client_input(line);
  494. // do_write(output);
  495. }
  496. client_read();
  497. } else {
  498. BUGZ_LOG(warning) << "C: read_failed " << ec;
  499. if (connected) {
  500. BUGZ_LOG(warning) << "Server.shutdown()";
  501. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  502. }
  503. }
  504. });
  505. }
  506. void Session::to_client(const std::string &message) {
  507. auto self(shared_from_this());
  508. // output the cleaned string (so I can see what we're sending in the
  509. // logs)
  510. std::string clean = clean_string(message);
  511. BUGZ_LOG(trace) << "2C: " << clean;
  512. boost::asio::async_write(
  513. socket_, boost::asio::buffer(message),
  514. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  515. if (!ec) {
  516. } else {
  517. BUGZ_LOG(warning)
  518. << "2C: write failed? closed? Server.shutdown()" << ec;
  519. if (connected) {
  520. BUGZ_LOG(warning) << "Server.shutdown()";
  521. server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  522. }
  523. }
  524. });
  525. }
  526. void Session::to_server(const std::string &message) {
  527. auto self(shared_from_this());
  528. BUGZ_LOG(trace) << "2S: " << message;
  529. boost::asio::async_write(
  530. server_, boost::asio::buffer(message),
  531. [this, self](boost::system::error_code ec, std::size_t /*length*/) {
  532. if (!ec) {
  533. } else {
  534. BUGZ_LOG(warning)
  535. << "S: write failed? closed? socket.shutdown() " << ec;
  536. // we're no longer connected.
  537. connected = false;
  538. socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
  539. }
  540. });
  541. if (director.active) {
  542. start_keepin_alive();
  543. }
  544. }
  545. void Session::start_keepin_alive(void) {
  546. // keep alive timer
  547. keep_alive_.expires_after(std::chrono::seconds(keepalive_secs));
  548. keep_alive_.async_wait(boost::bind(&Session::stayin_alive, this,
  549. boost::asio::placeholders::error));
  550. }
  551. void Session::stayin_alive(const boost::system::error_code error) {
  552. if (error != boost::asio::error::operation_aborted) {
  553. // stayin' alive, stayin' alive...
  554. if (director.active) {
  555. to_server(" ");
  556. BUGZ_LOG(warning) << "Session::stayin_alive()";
  557. }
  558. }
  559. }
  560. Server::Server(boost::asio::io_service &io_service,
  561. const boost::asio::ip::tcp::endpoint &endpoint,
  562. const std::string &host, const std::string &port,
  563. bool server_telnet_)
  564. : server_telnet{server_telnet_},
  565. io_service_{io_service},
  566. acceptor_{io_service_, endpoint},
  567. signal_{io_service, SIGUSR1, SIGTERM},
  568. host_{host},
  569. port_{port} {
  570. keep_accepting = true;
  571. BUGZ_LOG(info) << "Server::Server()";
  572. signal_.async_wait(boost::bind(&Server::on_signal, this,
  573. boost::asio::placeholders::error,
  574. boost::asio::placeholders::signal_number));
  575. do_accept();
  576. }
  577. void Server::on_signal(const boost::system::error_code &ec, int signal) {
  578. BUGZ_LOG(info) << "on_signal() :" << signal;
  579. keep_accepting = false;
  580. boost::system::error_code error;
  581. acceptor_.cancel(error);
  582. BUGZ_LOG(info) << "cancel: " << error;
  583. acceptor_.close(error);
  584. BUGZ_LOG(info) << "close: " << error;
  585. }
  586. Server::~Server() {
  587. CONFIG = YAML::Node();
  588. BUGZ_LOG(info) << "Server::~Server()";
  589. }
  590. /**
  591. * setup async connect accept
  592. *
  593. * This creates a session for each connection. Using make_shared allows the
  594. * session to automatically clean up when it is no longer active/has anything
  595. * running in the reactor.
  596. */
  597. void Server::do_accept(void) {
  598. acceptor_.async_accept([this](boost::system::error_code ec,
  599. boost::asio::ip::tcp::socket socket) {
  600. if (!ec) {
  601. BUGZ_LOG(info) << "Server::do_accept()";
  602. std::make_shared<Session>(std::move(socket), io_service_, host_, port_,
  603. server_telnet)
  604. ->start();
  605. }
  606. if (keep_accepting) {
  607. BUGZ_LOG(info) << "do_accept()";
  608. do_accept();
  609. }
  610. });
  611. }