Exemplo n.º 1
0
std::string network_get_address(Uint32 a) {
        return bee_inet_ntop(&a);
}
Exemplo n.º 2
0
/*
* 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
}