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
44545b5a
Commit
44545b5a
authored
Aug 12, 2005
by
Kurt Zeilenga
Browse files
Control OID changes from HEAD
ready for release?
parent
3f590c01
Changes
4
Hide whitespace changes
Inline
Side-by-side
CHANGES
View file @
44545b5a
OpenLDAP 2.2 Change Log
OpenLDAP 2.2.28
Engineering
OpenLDAP 2.2.28
Release
Fixed slapd shutdown crash on NULL slap_listeners (ITS#3842)
Fixed slapd using hashed passwords on SASL binds (ITS#3846)
Fixed back-bdb/hdb - check for BDB TXN patch
...
...
@@ -13,6 +13,8 @@ OpenLDAP 2.2.28 Engineering
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
Build Environment
Added BDB TXN patch in build/BerkeleyDB42.patch
...
...
build/version.var
View file @
44545b5a
...
...
@@ -15,9 +15,9 @@
ol_package
=
OpenLDAP
ol_major
=
2
ol_minor
=
2
ol_patch
=
X
ol_api_inc
=
2022
7
ol_patch
=
28
ol_api_inc
=
2022
8
ol_api_current
=
7
ol_api_revision
=
2
0
ol_api_revision
=
2
1
ol_api_age
=
0
ol_release_date
=
"2005/0
6
/1
0
"
ol_release_date
=
"2005/0
8
/1
3
"
include/ldap.h
View file @
44545b5a
...
...
@@ -203,6 +203,9 @@ typedef struct ldapcontrol {
#define LDAP_CONTROL_MANAGEDSAIT "2.16.840.1.113730.3.4.2"
/* RFC 3296 */
#define LDAP_CONTROL_SUBENTRIES "1.3.6.1.4.1.4203.1.10.1"
/* RFC 3672 */
#define LDAP_CONTROL_PAGEDRESULTS "1.2.840.113556.1.4.319"
/* RFC 2696 */
#define LDAP_CONTROL_ASSERT "1.3.6.1.1.12"
#define LDAP_CONTROL_PRE_READ "1.3.6.1.1.13.1"
#define LDAP_CONTROL_POST_READ "1.3.6.1.1.13.2"
/* standard track - not implemented in slapd(8) */
#define LDAP_CONTROL_SORTREQUEST "1.2.840.113556.1.4.473"
/* RFC 2891 */
...
...
@@ -213,10 +216,7 @@ typedef struct ldapcontrol {
#define LDAP_CONTROL_VALUESRETURNFILTER "1.2.826.0.1.334810.2.3"
/* various works in progress */
#define LDAP_CONTROL_ASSERT "1.3.6.1.4.1.4203.666.5.9"
#define LDAP_CONTROL_NOOP "1.3.6.1.4.1.4203.666.5.2"
#define LDAP_CONTROL_PRE_READ "1.3.6.1.4.1.4203.666.5.10.1"
#define LDAP_CONTROL_POST_READ "1.3.6.1.4.1.4203.666.5.10.2"
/* LDAP VLV *//* not implemented in slapd(8) */
#define LDAP_CONTROL_VLVREQUEST "2.16.840.1.113730.3.4.9"
...
...
servers/slapd/controls.c
View file @
44545b5a
...
...
@@ -80,13 +80,13 @@ static char *proxy_authz_extops[] = {
static
struct
slap_control
control_defs
[]
=
{
{
LDAP_CONTROL_ASSERT
,
SLAP_CTRL_HIDE
|
SLAP_CTRL_ACCESS
,
NULL
,
SLAP_CTRL_ACCESS
,
NULL
,
parseAssert
,
LDAP_SLIST_ENTRY_INITIALIZER
(
next
)
},
{
LDAP_CONTROL_PRE_READ
,
SLAP_CTRL_HIDE
|
SLAP_CTRL_DELETE
|
SLAP_CTRL_MODIFY
|
SLAP_CTRL_RENAME
,
NULL
,
SLAP_CTRL_DELETE
|
SLAP_CTRL_MODIFY
|
SLAP_CTRL_RENAME
,
NULL
,
parsePreRead
,
LDAP_SLIST_ENTRY_INITIALIZER
(
next
)
},
{
LDAP_CONTROL_POST_READ
,
SLAP_CTRL_HIDE
|
SLAP_CTRL_ADD
|
SLAP_CTRL_MODIFY
|
SLAP_CTRL_RENAME
,
NULL
,
SLAP_CTRL_ADD
|
SLAP_CTRL_MODIFY
|
SLAP_CTRL_RENAME
,
NULL
,
parsePostRead
,
LDAP_SLIST_ENTRY_INITIALIZER
(
next
)
},
{
LDAP_CONTROL_VALUESRETURNFILTER
,
SLAP_CTRL_SEARCH
,
NULL
,
...
...
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