Debug(LDAP_DEBUG_TRACE, "==> translucent_search_cb: %s\n",
rs->sr_entry->e_name.bv_val, 0, 0);
- op->ors_slimit = tc->slimit;
+ op->ors_slimit = tc->slimit + ( tc->slimit > 0 ? 1 : 0 );
on = tc->on;
ov = on->on_bi.bi_private;
if ( rc == LDAP_COMPARE_TRUE ) {
rs->sr_flags |= REP_ENTRY_MUSTBEFREED;
rs->sr_entry = re;
+
+ if ( tc->slimit >= 0 && rs->sr_nentries >= tc->slimit ) {
+ return LDAP_SIZELIMIT_EXCEEDED;
+ }
+
return SLAP_CB_CONTINUE;
} else {
entry_free( re );
}
op->o_bd = db;
+
+ if ( rc == SLAP_CB_CONTINUE && tc->slimit >= 0 && rs->sr_nentries >= tc->slimit ) {
+ return LDAP_SIZELIMIT_EXCEEDED;
+ }
+
return rc;
}
op->o_callback = &cb;
+ tc.slimit = op->ors_slimit;
+
if ( fr || !fl ) {
AttributeName *attrs = op->ors_attrs;
- tc.slimit = op->ors_slimit;
op->ors_slimit = SLAP_NO_LIMIT;
op->ors_attrs = NULL;
op->o_bd = &ov->db;
filter2bv_x( op, fr, &op->ors_filterstr );
}
rc = ov->db.bd_info->bi_op_search(op, rs);
- op->ors_slimit = tc.slimit;
op->ors_attrs = attrs;
op->o_bd = tc.db;
if ( fl ) {
send_ldap_result( op, rs );
}
+ op->ors_slimit = tc.slimit;
+
/* Free in reverse order */
if ( fl )
trans_filter_free( op, fl );