| 18 | using boost::asio::ip::tcp; |
| 19 | |
| 20 | std::string make_daytime_string() |
| 21 | { |
| 22 | using namespace std; // For time_t, time and ctime; |
| 23 | time_t now = time(0); |
| 24 | return ctime(&now); |
| 25 | } |
| 26 | |
| 27 | class tcp_connection |
| 28 | : public std::enable_shared_from_this<tcp_connection> |