inet_pton
inet_pton
inet_pton是一個IP地址轉換函數,可以在將IP地址在“點分十進位”和“二進位整數”之間轉換而且,inet_pton和inet_ntop這2個函數能夠處理ipv4和ipv6。算是比較新的函數了。
windows下:
linux下:
#include socket.h>
#include
#include
inet_pton:將“點分十進位” -> “二進位整數”
inet_pton 是inet_addr的擴展,支持的多地址族有下列:
af = AF_INET
af = AF_INET6
下面是常式:
#include
#include
#include
#include
#include
#include
int main (void)
{
char IPdotdec[20]; //存放點分十進位IP地址
struct in_addr s; // IPv4地址結構體
// 輸入IP地址
printf("Please input IP address: ");
scanf("%s", IPdotdec);
// 轉換
inet_pton(AF_INET, IPdotdec, (void *)&s);
printf("inet_pton: 0x%x\n", s.s_addr); // 注意得到的位元組序
// 反轉換
inet_ntop(AF_INET, (void *)&s, IPdotdec, 16);
printf("inet_ntop: %s\n", IPdotdec);
}