- 论坛徽章:
- 0
|
sin.sin_addr.s_addr = inet_addr("127.0.0.1");
inet_addr 是将字符串“127.0.0.1” 转换成IP地址,
Name: inet_addr
Prototype: uint32_t inet_addr (const char *name)
Description:
This function converts the IPv4 Internet host address name from the standard numbers-and-dots notation into binary data. If the input is not valid, inet_addr returns INADDR_NONE. This is an obsolete interface to inet_aton, described immediately above. It is obsolete because INADDR_NONE is a valid address (255.255.255.255), and inet_aton provides a cleaner way to indicate error return.
Header files: arpa/inet.h
Name: gethostbyname
Prototype: struct hostent * gethostbyname (const char *name)
Description:
The gethostbyname function returns information about the host named name. If the lookup fails, it returns a null pointer.
Header files: netdb.h
[ 本帖最后由 wxfjx 于 2009-12-23 22:39 编辑 ] |
|