Structures
ldb_request
struct ldb_request {
enum ldb_request_type operation;
union {
struct ldb_search search;
struct ldb_add add;
struct ldb_modify mod;
struct ldb_delete del;
struct ldb_rename rename;
struct ldb_extended extended;
struct ldb_register_control reg_control;
struct ldb_register_partition reg_partition;
} op;
struct ldb_control **controls;
void *context;
ldb_request_callback_t callback;
int timeout;
time_t starttime;
struct ldb_handle *handle;
};
Operations
ldb_request()
int ldb_request(struct ldb_context *ldb, struct ldb_request *request);
ldb_request_done()
int ldb_request_done(struct ldb_request *req, int status);
ldb_request_is_done()
bool ldb_request_is_done(struct ldb_request *req);