mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-30 13:30:57 +08:00
add o_no_subordinate_glue member to operation
This commit is contained in:
parent
dfe20afd84
commit
7c9c559019
@ -1698,7 +1698,7 @@ struct slap_backend_db {
|
||||
/* Database flags */
|
||||
#define SLAP_DBFLAG_NOLASTMOD 0x0001U
|
||||
#define SLAP_DBFLAG_NO_SCHEMA_CHECK 0x0002U
|
||||
#define SLAP_DBFLAG_HIDDEN 0x0004U
|
||||
#define SLAP_DBFLAG_HIDDEN 0x0004U
|
||||
#define SLAP_DBFLAG_GLUE_INSTANCE 0x0010U /* a glue backend */
|
||||
#define SLAP_DBFLAG_GLUE_SUBORDINATE 0x0020U /* child of a glue hierarchy */
|
||||
#define SLAP_DBFLAG_GLUE_LINKED 0x0040U /* child is connected to parent */
|
||||
@ -2444,6 +2444,8 @@ typedef struct slap_op {
|
||||
char o_delete_glue_parent;
|
||||
char o_no_schema_check;
|
||||
#define get_no_schema_check(op) ((op)->o_no_schema_check)
|
||||
char o_no_subordinate_glue;
|
||||
#define get_no_subordinate_glue(op) ((op)->o_no_subordinate_glue)
|
||||
|
||||
#define SLAP_CONTROL_NONE 0
|
||||
#define SLAP_CONTROL_IGNORED 1
|
||||
|
Loading…
Reference in New Issue
Block a user