inet_ntop

inet_ntop是函式原型的一種。

基本介紹

  • 中文名:inet_ntop
  • 外文名:inet_ntop
  • 性質:函式原型
  • 作用:在點分十進制和二進制整數轉換
  • 返回值:不是有效表達式返回1,失敗返回-1
簡介,例程,

簡介

Linux下inet_pton和inet_ntop這2個IP位址轉換函式,可以在將IP位址在“點分十進制”和“二進制整數”之間轉換。而且,這2個函式能夠處理ipv4和ipv6。算是比較新的函式了。
inet_ntop函式原型如下[將“二進制整數” -> “點分十進制”]
#include <sys/types.h>
#include <sys/socket.h>
#include <arpa/inet.h>
const char *inet_ntop(int af, const void *src, char *dst, socklen_t cnt);
這個函式轉換網路二進制結構到ASCII類型的地址,參數的作用和inet_pton相同,只是多了一個參數socklen_t cnt,他是所指向快取區dst的大小,避免溢出,如果快取區太小無法存儲地址的值,則返回一個空指針,並將errno置為ENOSPC。

例程

下面是例程:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/socket.h>
#include <netinet/in.h>
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);
}
例程2;
#include <stdio.h>
#include <stdlib.h>
#include <netinet/in.h>
int main(void)

相關詞條

熱門詞條

聯絡我們