在此代码中,目的是以简单的方式显示 IP 地址。
/* Simple IP getter, working on Linux. */
#include <stdio.h>
#include <unistd.h>
#include <string.h> // for strncpy
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/ioctl.h>
#include <netinet/in.h>
#include <net/if.h>
#include <arpa/inet.h>
int
main()
{
int fd;
struct ifreq ifr;
fd = socket(AF_INET, SOCK_DGRAM, 0);
// I want to get an IPv4 IP address
ifr.ifr_addr.sa_family = AF_INET;
// I want IP address attached to "eth0"
strncpy(ifr.ifr_name, "eth0", IFNAMSIZ-1);
ioctl(fd, SIOCGIFADDR, &ifr);
close(fd);
// display result
printf("%s\n", inet_ntoa(((struct sockaddr_in *)&ifr.ifr_addr)->sin_addr));
return 0;
}
它适用于 Linux,但如果您尝试在 windows 上使用 mingw32 编译它,即使使用 -lw32_.. 它也不起作用。
我试图找到 winsock.dll 并将其添加到目录中,但它没有帮助。
任何想法都会有所帮助。先感谢您。