| 132 | } |
| 133 | |
| 134 | void handle_accept(connection::pointer new_connection, |
| 135 | const boost::system::error_code& error) |
| 136 | { |
| 137 | if (!error) |
| 138 | { |
| 139 | new_connection->start(); |
| 140 | } |
| 141 | |
| 142 | start_accept(); |
| 143 | } |
| 144 | |
| 145 | tcp_acceptor acceptor_; |
| 146 | std::string filename_; |