1. 程式人生 > >Linux下靠譜的獲取本機IP的C程式碼實

Linux下靠譜的獲取本機IP的C程式碼實

這裡寫程式碼片http://blog.csdn.net/langeldep/article/details/8306603
正在做一個網路程式設計的任務,多臺裝置向伺服器傳送圖片,傳送圖片的時候同時告訴伺服器自己的IP。伺服器根據IP來區分不同的裝置,將圖片存到不同的資料夾下。正好看到一段程式碼,在linux下獲取本機IP的C程式碼實現,驗證好用。之前看到其他的,只能 獲得lo的IP。

    #include <stdio.h>        
    #include <ifaddrs.h>  
    #include <netinet/in.h>   
    #include <string.h>    
#include <unistd.h> #include <stdlib.h> #include <sys/socket.h> int main (int argc, const char * argv[]) { struct ifaddrs * ifAddrStruct=NULL; void * tmpAddrPtr=NULL; getifaddrs(&ifAddrStruct); while
(ifAddrStruct!=NULL) { if (ifAddrStruct->ifa_addr->sa_family==AF_INET) { // check it is IP4 // is a valid IP4 Address tmpAddrPtr = &((struct sockaddr_in *)ifAddrStruct->ifa_addr)->sin_addr; char
addressBuffer[INET_ADDRSTRLEN]; inet_ntop(AF_INET, tmpAddrPtr, addressBuffer, INET_ADDRSTRLEN); printf("%s IPV4 Address %s\n", ifAddrStruct->ifa_name, addressBuffer); } else if (ifAddrStruct->ifa_addr->sa_family==AF_INET6) { // check it is IP6 // is a valid IP6 Address tmpAddrPtr=&((struct sockaddr_in *)ifAddrStruct->ifa_addr)->sin_addr; char addressBuffer[INET6_ADDRSTRLEN]; inet_ntop(AF_INET6, tmpAddrPtr, addressBuffer, INET6_ADDRSTRLEN); printf("%s IPV6 Address %s\n", ifAddrStruct->ifa_name, addressBuffer); } ifAddrStruct = ifAddrStruct->ifa_next; } return 0; }

執行結果:
lo IPV4 Address 127.0.0.1
eth0 IPV4 Address 192.168.136.128
lo IPV6 Address ::
eth0 IPV6 Address 0:0:ef60::28c:27fe