Internet地址结构及转换

Internet地址的基本数据结构如下:

  1. #include <netinet/in.h>  
  2.   
  3. struct sockaddr_in {  
  4.     short            sin_family;      // e.g. AF_INET  
  5.     unsigned short   sin_port;  // e.g. htons(3490)  
  6.     struct in_addr   sin_addr;   // see struct in_addr, below  
  7.     char             sin_zero[8];    // zero this if you want to  
  8. };  
  9.   
  10. struct in_addr {  
  11.     unsigned long s_addr;  // load with inet_aton()  
  12. };  


IP字符串转换到unsigned long:

  1. in_addr ip_addr;  
  2. inet_aton("63.161.169.137", &ip_addr);  
 

unsigned long转换到IP字符串:

  1. char ip[64];  
  2. in_addr in;  
  3. in.s_addr = htonl(176427304); //unsigned long to be converted  
  4. strcpy(ip, inet_ntoa(in));  
  5. printf("ip: %s\n", ip);  
 

使用的时候只要include下面的头文件:

  1. #include <netinet/in.h>  
  2. #include <arpa/inet.h>  
 

你可能感兴趣的:(数据结构,include,internet)