| 20 | using boost::asio::ip::udp; |
| 21 | |
| 22 | std::string make_daytime_string() |
| 23 | { |
| 24 | using namespace std; // For time_t, time and ctime; |
| 25 | time_t now = time(0); |
| 26 | return ctime(&now); |
| 27 | } |
| 28 | |
| 29 | class tcp_connection |
| 30 | : public std::enable_shared_from_this<tcp_connection> |
no outgoing calls
no test coverage detected