| 79 | } |
| 80 | |
| 81 | void local_acceptor_uds_impl::close(boost::system::error_code& _ec) { |
| 82 | std::scoped_lock const lock{mtx_}; |
| 83 | if (acceptor_->is_open()) { |
| 84 | VSOMEIP_INFO_P << "Closing the acceptor: " << own_endpoint_.path() << ", mem: " << this; |
| 85 | acceptor_->close(_ec); |
| 86 | } |
| 87 | } |
| 88 | void local_acceptor_uds_impl::cancel(boost::system::error_code& _ec) { |
| 89 | std::scoped_lock const lock{mtx_}; |
| 90 | if (acceptor_->is_open()) { |