| 26 | namespace Valdi { |
| 27 | |
| 28 | Error errorFromBoostError(const boost::system::error_code& ec) { |
| 29 | return Error(StringCache::getGlobal().makeString(ec.message())); |
| 30 | } |
| 31 | |
| 32 | std::vector<std::string> getAllAvailableAddresses(boost::asio::io_service& /*ioService*/) { |
| 33 | std::vector<std::string> allAddresses; |
no test coverage detected