From: Ted C. Cheng Date: Thu, 24 Jan 2013 15:12:43 +0000 (-0800) Subject: Removed #if 0 code block X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c3eb1dc82b91bb3a41f3e373af9b1c60b9beca5d;p=openldap Removed #if 0 code block --- diff --git a/servers/slapd/config.c b/servers/slapd/config.c index 9c7f00db0c..117c3e489a 100644 --- a/servers/slapd/config.c +++ b/servers/slapd/config.c @@ -1989,20 +1989,6 @@ slap_client_connect( LDAP **ldp, slap_bindconf *sb ) /* setting network keepalive options */ slap_client_keepalive(ld, &sb->sb_keepalive); -#if 0 - if ( sb->sb_keepalive.sk_idle ) { - ldap_set_option( ld, LDAP_OPT_X_KEEPALIVE_IDLE, &sb->sb_keepalive.sk_idle ); - } - - if ( sb->sb_keepalive.sk_probes ) { - ldap_set_option( ld, LDAP_OPT_X_KEEPALIVE_PROBES, &sb->sb_keepalive.sk_probes ); - } - - if ( sb->sb_keepalive.sk_interval ) { - ldap_set_option( ld, LDAP_OPT_X_KEEPALIVE_INTERVAL, &sb->sb_keepalive.sk_interval ); - } -#endif /* 0 */ - #ifdef HAVE_TLS if ( sb->sb_tls_do_init ) { rc = bindconf_tls_set( sb, ld );