*:convert_ip_to_hostname (condor_netdb.c)
 
+Note: this is part of the NO_DNS code path and converts 192.168.0.33 to 192-168-0-33.DEFAULT_DOMAIN.
+
 This one is little tricky. Given parameter, const char* addr is actually in_addr*. Inside of the function, it explicitly type-cast const char* addr to in_addr*. It calls inet_ntoa and convert every '.' char to '-'.
 
 *:getaddrinfo