| 70 | routing_manager_stub::~routing_manager_stub() { } |
| 71 | |
| 72 | void routing_manager_stub::init() { |
| 73 | |
| 74 | init_routing_endpoint(); |
| 75 | |
| 76 | if (char its_hostname[1024]; gethostname(its_hostname, sizeof(its_hostname)) == 0) { |
| 77 | host_->set_client_host(its_hostname); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | void routing_manager_stub::start() { |
| 82 |
nothing calls this directly
no test coverage detected