MAC 썸네일형 리스트형 mac 얻어오기 Getting MAC address from a network interface This page shows you how to obtain the MAC address from a network interface. Simple sample of getting MAC address information #include #include /* for strncpy */ #include #include #include #include #include int main() { int fd; struct ifreq ifr; fd = socket(AF_INET, SOCK_DGRAM, 0); ifr.ifr_addr.sa_family = AF_INET; strncpy(ifr.ifr_name, "eth0", IFNAMSI.. 더보기 이전 1 다음