interface name 썸네일형 리스트형 Socket Interface Name으로 IP 주소 가져오기. 3g,wifi등 인터넷에 interface Name이 있습니다.이 name을 이용하여 IP를 가져오는 방법이 있네요.system 입출력 함수인 ioctl을 이용하여 가져오는 방법입니다. ...#include #include #include #include ...char *getIfToIP(char *ifName){ 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 interfaceName */ strncpy(ifr.ifr_name, ifName, IFNAM.. 더보기 이전 1 다음