更新时间:2024-01-08 19:29
inet_aton是一个计算机函数,功能是将一个字符串IP地址转换为一个32位的网络序列IP地址。如果这个函数成功,函数的返回值非零,如果输入地址不正确则会返回零。使用这个函数并没有错误码存放在errno中,所以它的值会被忽略。
struct sockaddr_in adr_inet; /* AF_INET */
提供给inet_aton函数调用的第二个参数指针为 &adr_inet.sin_addr
例子:
/*
* inetaton.c
*
* Example using inet_aton
*/
/*此处省去头文件的“包含”*/
/*
* this function reports the error and
* exits back to the shell
*/
static void bail(const char *on_what)
{
fputs(on_what,stderr);
}
int main(int argc,char **argv)
{
int z;
struct sockaddr_in adr_inet; /* AF_INET */
int len_inet; /* length */
int sck_inet; /* Socket */
/* Create a Socket */
sck_inet = socket(AF_INET, SOCK_STREAM, 0);
if (sck_inet == -1)
/* Establish address */
memset(&adr_inet, 0, sizeof(adr_inet));
adr_inet.sin_family = AF_INET;
adr_inet.sin_port = htons(9000); .
len_inet = sizeof(adr_inet);
/* Bind it to the socket */
z = bind(sck_inet, (struct sockaddr *)&adr_inet,len_inet);
if(z == -1)
/* Display our socket address */
return 0;
}
程序的运行结果如下:
S$ ./inetaton
tcp 0 0 127.0.0.23:9000 *:* CLOSE 1007/inetaton