mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
Minor cleanup
This commit is contained in:
parent
c80d93f2bb
commit
91644affd9
@ -722,7 +722,7 @@ attributetype ( 2.5.18.6 NAME 'subtreeSpecification'
|
|||||||
|
|
||||||
objectclass ( 2.5.20.0 NAME 'subentry'
|
objectclass ( 2.5.20.0 NAME 'subentry'
|
||||||
SUP top STRUCTURAL
|
SUP top STRUCTURAL
|
||||||
MUST ( cn $ subtreeSpecification ) )
|
MUST ( cn $ subtreeSpecification ) )
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
@ -771,28 +771,6 @@ attributetype ( 1.3.6.1.4.1.4203.1.3.5
|
|||||||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.38
|
SYNTAX 1.3.6.1.4.1.1466.115.121.1.38
|
||||||
USAGE dSAOperation )
|
USAGE dSAOperation )
|
||||||
|
|
||||||
#
|
|
||||||
# RFC 3112 (authPassword)
|
|
||||||
#
|
|
||||||
attributetype ( 1.3.6.1.4.1.4203.1.3.4
|
|
||||||
NAME 'authPassword'
|
|
||||||
DESC 'RFC3112: authentication password attribute'
|
|
||||||
SYNTAX 1.3.6.1.4.1.4203.666.2.2
|
|
||||||
USAGE dSAOperation )
|
|
||||||
|
|
||||||
attributetype ( 1.3.6.1.4.1.4203.1.3.3
|
|
||||||
NAME 'supportedAuthPasswordSchemes'
|
|
||||||
DESC 'RFC3112: supported authPassword schemes'
|
|
||||||
EQUALITY caseIgnoreIA5Match
|
|
||||||
SYNTAX 1.3.6.1.4.1.1466.115.121.1.26{32}
|
|
||||||
NO-USER-MODIFICATION USAGE dSAOperation )
|
|
||||||
|
|
||||||
objectclass ( 1.3.6.1.4.1.4203.1.4.7
|
|
||||||
NAME 'authPasswordObject'
|
|
||||||
DESC 'RFC3112: authPassword mixin class'
|
|
||||||
MAY authPassword
|
|
||||||
AUXILIARY )
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# LDUP/LCUP attributes
|
# LDUP/LCUP attributes
|
||||||
# Experimental!
|
# Experimental!
|
||||||
|
@ -407,7 +407,8 @@ typedef struct slap_matching_rule {
|
|||||||
#define smr_extensions smr_mrule.mr_extensions
|
#define smr_extensions smr_mrule.mr_extensions
|
||||||
} MatchingRule;
|
} MatchingRule;
|
||||||
|
|
||||||
struct slap_attr_desc;
|
struct slap_entry;
|
||||||
|
struct slap_attr;
|
||||||
|
|
||||||
typedef int (AttributeTypeSchemaCheckFN)(
|
typedef int (AttributeTypeSchemaCheckFN)(
|
||||||
struct slap_entry *e,
|
struct slap_entry *e,
|
||||||
@ -451,6 +452,8 @@ typedef struct slap_attribute_type {
|
|||||||
#define is_at_obsolete(at) ((at)->sat_obsolete)
|
#define is_at_obsolete(at) ((at)->sat_obsolete)
|
||||||
#define is_at_no_user_mod(at) ((at)->sat_no_user_mod)
|
#define is_at_no_user_mod(at) ((at)->sat_no_user_mod)
|
||||||
|
|
||||||
|
struct slap_object_class;
|
||||||
|
|
||||||
typedef int (ObjectClassSchemaCheckFN)(
|
typedef int (ObjectClassSchemaCheckFN)(
|
||||||
struct slap_entry *e,
|
struct slap_entry *e,
|
||||||
struct slap_object_class *oc,
|
struct slap_object_class *oc,
|
||||||
|
Loading…
Reference in New Issue
Block a user