| 1505 | } |
| 1506 | |
| 1507 | std::shared_ptr<serviceinfo> routing_manager_impl::get_offered_service(service_t _service, instance_t _instance) const { |
| 1508 | std::shared_ptr<serviceinfo> its_info; |
| 1509 | its_info = find_service(_service, _instance); |
| 1510 | if (its_info && !its_info->is_local()) { |
| 1511 | its_info.reset(); |
| 1512 | } |
| 1513 | return its_info; |
| 1514 | } |
| 1515 | |
| 1516 | std::map<instance_t, std::shared_ptr<serviceinfo>> routing_manager_impl::get_offered_service_instances(service_t _service) const { |
| 1517 | std::map<instance_t, std::shared_ptr<serviceinfo>> its_instances; |
no test coverage detected