std::string network_get_address(Uint32 a) { return bee_inet_ntop(&a); }
/* * network_get_address() - Return the string of an IP address based on its data in Network Byte Order * @a: the IP address data */ std::string network_get_address(Uint32 a) { return bee_inet_ntop(&a); // Call a cross-platform version of this function from bee/util/platform.hpp }