Skip to content
Snippets Groups Projects
Commit 2ae410bd authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Treat INADDR_LOOPBACK (as well as INADDR_ANY) as local host.

parent 3b03b64b
No related branches found
No related tags found
No related merge requests found
......@@ -473,6 +473,17 @@ ldap_host_connected_to( Sockbuf *sb )
{
return LDAP_STRDUP( ldap_int_hostname );
}
#ifdef INADDR_LOOPBACK
localhost.sin_addr.s_addr = htonl( INADDR_LOOPBACK );
if( memcmp ( &localhost.sin_addr,
&((struct sockaddr_in *)&sa)->sin_addr,
sizeof(localhost.sin_addr) ) == 0 )
{
return LDAP_STRDUP( ldap_int_hostname );
}
#endif
}
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment