Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
ingo Voss
OpenLDAP
Commits
0dba093c
Commit
0dba093c
authored
Aug 12, 2005
by
Kurt Zeilenga
Browse files
IANA Assigned OIDs
parent
44545b5a
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
0dba093c
...
...
@@ -13,8 +13,7 @@ OpenLDAP 2.2.28 Release
Fixed back-meta control propagation bug (ITS#3813)
Fixed syncrepl SASL bind crash (ITS#3792)
Fixed libldap infinite referral loop (ITS#2894, ITS#3578)
Updated Assertion control to use IANA-assigned OID
Updated pre/post read controls to use IANA-assigned OIDs
Use IANA assigned OIDs for recently approved IETF LDAP extensions
Build Environment
Added BDB TXN patch in build/BerkeleyDB42.patch
...
...
include/ldap.h
View file @
0dba093c
...
...
@@ -279,7 +279,7 @@ typedef struct ldapcontrol {
#define LDAP_FEATURE_ABSOLUTE_FILTERS "1.3.6.1.4.1.4203.1.5.3"
/* (&) (|) */
#define LDAP_FEATURE_LANGUAGE_TAG_OPTIONS "1.3.6.1.4.1.4203.1.5.4"
#define LDAP_FEATURE_LANGUAGE_RANGE_OPTIONS "1.3.6.1.4.1.4203.1.5.5"
#define LDAP_FEATURE_MODIFY_INCREMENT "1.3.6.1.
4.1.4203.666.8.2
"
#define LDAP_FEATURE_MODIFY_INCREMENT "1.3.6.1.
1.14
"
/*
* specific LDAP instantiations of BER types we know about
...
...
servers/slapd/controls.c
View file @
0dba093c
...
...
@@ -29,7 +29,6 @@ static SLAP_CTRL_PARSE_FN parsePreRead;
static
SLAP_CTRL_PARSE_FN
parsePostRead
;
static
SLAP_CTRL_PARSE_FN
parseProxyAuthz
;
static
SLAP_CTRL_PARSE_FN
parseManageDSAit
;
static
SLAP_CTRL_PARSE_FN
parseModifyIncrement
;
static
SLAP_CTRL_PARSE_FN
parseNoOp
;
static
SLAP_CTRL_PARSE_FN
parsePagedResults
;
static
SLAP_CTRL_PARSE_FN
parseValuesReturnFilter
;
...
...
@@ -125,11 +124,6 @@ static struct slap_control control_defs[] = {
{
LDAP_CONTROL_SYNC
,
SLAP_CTRL_HIDE
|
SLAP_CTRL_SEARCH
,
NULL
,
parseLDAPsync
,
LDAP_SLIST_ENTRY_INITIALIZER
(
next
)
},
#ifdef LDAP_CONTROL_MODIFY_INCREMENT
{
LDAP_CONTROL_MODIFY_INCREMENT
,
SLAP_CTRL_HIDE
|
SLAP_CTRL_MODIFY
,
NULL
,
parseModifyIncrement
,
LDAP_SLIST_ENTRY_INITIALIZER
(
next
)
},
#endif
{
LDAP_CONTROL_MANAGEDSAIT
,
SLAP_CTRL_ACCESS
,
NULL
,
parseManageDSAit
,
LDAP_SLIST_ENTRY_INITIALIZER
(
next
)
},
...
...
@@ -664,32 +658,6 @@ return_results:
return
rs
->
sr_err
;
}
static
int
parseModifyIncrement
(
Operation
*
op
,
SlapReply
*
rs
,
LDAPControl
*
ctrl
)
{
#if 0
if ( op->o_modifyIncrement != SLAP_NO_CONTROL ) {
rs->sr_text = "modifyIncrement control specified multiple times";
return LDAP_PROTOCOL_ERROR;
}
#endif
if
(
ctrl
->
ldctl_value
.
bv_len
)
{
rs
->
sr_text
=
"modifyIncrement control value not empty"
;
return
LDAP_PROTOCOL_ERROR
;
}
#if 0
op->o_modifyIncrement = ctrl->ldctl_iscritical
? SLAP_CRITICAL_CONTROL
: SLAP_NONCRITICAL_CONTROL;
#endif
return
LDAP_SUCCESS
;
}
static
int
parseManageDSAit
(
Operation
*
op
,
SlapReply
*
rs
,
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment