Skip to content
Snippets Groups Projects
Commit c129316e authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

Fix prev commit, it was not Linux-only as it claimed to be.

parent 660c16ca
No related branches found
No related tags found
No related merge requests found
......@@ -145,6 +145,10 @@ ldap_int_prepare_socket(LDAP *ld, int s, int proto )
if ( ld->ld_options.ldo_keepalive_idle > 0 )
{
#ifdef TCP_KEEPIDLE
/* AIX uses protocol numbers for everything besides SOL_SOCKET */
#ifndef SOL_TCP
#define SOL_TCP IPPROTO_TCP
#endif
if ( setsockopt( s, SOL_TCP, TCP_KEEPIDLE,
(void*) &ld->ld_options.ldo_keepalive_idle,
sizeof(ld->ld_options.ldo_keepalive_idle) ) == AC_SOCKET_ERROR )
......
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