mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
r20582: use void *data in the ldb_extended struct to match what we have in ldb_control
add a request element for extended requests metze
This commit is contained in:
parent
aababcbb05
commit
530b3cd250
@ -683,8 +683,7 @@ struct ldb_result {
|
||||
|
||||
struct ldb_extended {
|
||||
const char *oid;
|
||||
const char *value;
|
||||
int value_len;
|
||||
void *data;
|
||||
};
|
||||
|
||||
struct ldb_reply {
|
||||
@ -714,7 +713,7 @@ struct ldb_add {
|
||||
const struct ldb_message *message;
|
||||
};
|
||||
|
||||
struct ldb_modify {
|
||||
struct ldb_modify {
|
||||
const struct ldb_message *message;
|
||||
};
|
||||
|
||||
@ -756,9 +755,10 @@ struct ldb_request {
|
||||
struct ldb_modify mod;
|
||||
struct ldb_delete del;
|
||||
struct ldb_rename rename;
|
||||
struct ldb_extended extended;
|
||||
struct ldb_sequence_number seq_num;
|
||||
struct ldb_register_control reg_control;
|
||||
struct ldb_register_partition reg_partition;
|
||||
struct ldb_sequence_number seq_num;
|
||||
} op;
|
||||
|
||||
struct ldb_control **controls;
|
||||
|
Loading…
Reference in New Issue
Block a user