[c언어] inet_ntop
설명 IPv4와 IPv6 주소를 binary 형태로 사람이 볼 수 있는 텍스트 형태로 전환 #include const char *inet_ntop(int af, const void *src, char *dst, socklen_t size); 예제 struct sockaddr_in sa; char str[INET_ADDRSTRLEN]; // store this IP address in sa: inet_pton(AF_INET, "192.0.2.33", &(sa.sin_addr)); // now get it back and print it inet_ntop(AF_INET, &(sa.sin_addr), str, INET_ADDRSTRLEN); printf("%s\n", str); // prints "192.0...
2023.05.29