コード例 #1
0
std::string network_get_address(Uint32 a) {
        return bee_inet_ntop(&a);
}
コード例 #2
0
ファイル: network.hpp プロジェクト: piluke/BasicEventEngine
/*
* 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
}