| 4013 | } // node_impl::close() |
| 4014 | |
| 4015 | void node_impl::accept_connection_task( peer_connection_ptr new_peer ) |
| 4016 | { |
| 4017 | VERIFY_CORRECT_THREAD(); |
| 4018 | new_peer->accept_connection(); // this blocks until the secure connection is fully negotiated |
| 4019 | send_hello_message(new_peer); |
| 4020 | } |
| 4021 | |
| 4022 | void node_impl::accept_loop() |
| 4023 | { |
nothing calls this directly
no test coverage detected