// // Created by pengx on 2025/7/11. // #ifndef UTILS_HPP #define UTILS_HPP #include <boost/asio.hpp> #include <iostream> class Utils { public: static bool is_network_reachable(const std::string &host, const std::string &service); }; #endif //UTILS_HPP