]> git.sur5r.net Git - openldap/commitdiff
Revert prev commit, unnecessary
authorHoward Chu <hyc@openldap.org>
Tue, 27 Jan 2009 18:16:28 +0000 (18:16 +0000)
committerHoward Chu <hyc@openldap.org>
Tue, 27 Jan 2009 18:16:28 +0000 (18:16 +0000)
servers/slapd/connection.c
servers/slapd/proto-slap.h

index ae781817ab0493cbe4dc1806cc7a1bb5cd769d49..9e2130d6de68917c410a1674d445a1ecbc230e0a 100644 (file)
@@ -1240,7 +1240,7 @@ int connection_read_activate( ber_socket_t s )
         * thread reads data on it. Otherwise the listener thread will repeatedly
         * submit the same event on it to the pool.
         */
-       rc = slapd_ack_read( s, 0 );
+       rc = slapd_clr_read( s, 0 );
        if ( rc )
                return rc;
 
@@ -1844,7 +1844,7 @@ int connection_write(ber_socket_t s)
 
        assert( connections != NULL );
 
-       slapd_ack_write( s, 0 );
+       slapd_clr_write( s, 0 );
 
        c = connection_get( s );
        if( c == NULL ) {
index 3bfe1263703d8878e8900c109c10caa1cd88460f..5837bb50f2b35236e5ed15f43a404d2ac4472643 100644 (file)
@@ -831,10 +831,8 @@ LDAP_SLAPD_F (void) slap_wake_listener LDAP_P((void));
 
 LDAP_SLAPD_F (void) slapd_set_write LDAP_P((ber_socket_t s, int wake));
 LDAP_SLAPD_F (void) slapd_clr_write LDAP_P((ber_socket_t s, int wake));
-LDAP_SLAPD_F (void) slapd_ack_write LDAP_P((ber_socket_t s, int wake));
 LDAP_SLAPD_F (void) slapd_set_read LDAP_P((ber_socket_t s, int wake));
 LDAP_SLAPD_F (int) slapd_clr_read LDAP_P((ber_socket_t s, int wake));
-LDAP_SLAPD_F (int) slapd_ack_read LDAP_P((ber_socket_t s, int wake));
 
 LDAP_SLAPD_V (volatile sig_atomic_t) slapd_abrupt_shutdown;
 LDAP_SLAPD_V (volatile sig_atomic_t) slapd_shutdown;