| 6630 | } |
| 6631 | |
| 6632 | std::string raise_system_error(std::string const &message) { |
| 6633 | std::string error_message = message + ": " + std::strerror(errno) + " (" + std::to_string(errno) + ")"; |
| 6634 | throw std::runtime_error(error_message); |
| 6635 | } |
| 6636 | |
| 6637 | /** |
| 6638 | * @brief Fetches the public IP address of the default networking |
no outgoing calls
no test coverage detected