| 1921 | } |
| 1922 | |
| 1923 | void routing_manager_impl::expire_subscriptions(const boost::asio::ip::address& _address) { |
| 1924 | expire_subscriptions(_address, port_range_t(ANY_PORT, ANY_PORT), false); |
| 1925 | } |
| 1926 | |
| 1927 | void routing_manager_impl::expire_subscriptions(const boost::asio::ip::address& _address, std::uint16_t _port, bool _reliable) { |
| 1928 | expire_subscriptions(_address, port_range_t(_port, _port), _reliable); |
nothing calls this directly
no test coverage detected