Home |
Function inet_ntoa |
Function inet_ntoaConvert an IP address to dotted-decimal format. const char * inet_ntoa(struct in_addr in); ParametersinIP address (in sin_addr field). return valuePointer to a static string buffer with the IP address in dotted-decimal format or NULL if an error is detected. The string is returned in a global buffer. Thus, this function is not reentrant.
|