bool UdpSocket::isConnectNet() //获取百度的ip地址 如果能获取到,就证明联网,返回真 否则返回假
{
struct hostent *host;
host = gethostbyname("www.baidu.com");
if (host)
return true;
else
return false;
}
需要引用个头文件
#include <netdb.h>
bool UdpSocket::isConnectNet() //获取百度的ip地址 如果能获取到,就证明联网,返回真 否则返回假
{
struct hostent *host;
host = gethostbyname("www.baidu.com");
if (host)
return true;
else
return false;
}
需要引用个头文件
#include <netdb.h>