Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
cafa0e5a
Commit
cafa0e5a
authored
26 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Add more C-API prototypes (not yet implemented).
parent
97ac0535
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/ldap.h
+14
-2
14 additions, 2 deletions
include/ldap.h
with
14 additions
and
2 deletions
include/ldap.h
+
14
−
2
View file @
cafa0e5a
...
...
@@ -64,8 +64,6 @@ typedef struct ldap_apifeature_info {
#define LDAP_NO_ATTRS "1.1"
#define LDAP_ALL_USER_ATTRIBUTES "*"
#define LDAP_SASL_SIMPLE NULL
#define LDAP_COMPAT20
#define LDAP_COMPAT30
#if defined(LDAP_COMPAT20) || defined(LDAP_COMPAT30)
...
...
@@ -194,6 +192,9 @@ typedef struct ldapcontrol {
#define OLD_LDAP_RES_MODDN OLD_LDAP_RES_MODRDN
#define OLD_LDAP_RES_COMPARE 0x0fL
/* sasl methods */
#define LDAP_SASL_SIMPLE NULL
/* authentication methods available */
#define LDAP_AUTH_NONE 0x00L
/* no authentication */
#define LDAP_AUTH_SIMPLE 0x80L
/* context specific + primitive */
...
...
@@ -471,6 +472,7 @@ LDAP_F int ldap_set_option LDAP_P((LDAP *ld, int option, void *invalue));
*/
LDAP_F
void
ldap_control_free
LDAP_P
((
LDAPControl
*
ctrl
));
LDAP_F
void
ldap_controls_free
LDAP_P
((
LDAPControl
**
ctrls
));
/*
* in extended.c:
...
...
@@ -722,6 +724,12 @@ LDAP_F int ldap_count_messages LDAP_P(( LDAP *ld, LDAPMessage *chain ));
LDAP_F
LDAPMessage
*
ldap_first_reference
LDAP_P
((
LDAP
*
ld
,
LDAPMessage
*
chain
));
LDAP_F
LDAPMessage
*
ldap_next_reference
LDAP_P
((
LDAP
*
ld
,
LDAPMessage
*
ref
));
LDAP_F
int
ldap_count_reference
LDAP_P
((
LDAP
*
ld
,
LDAPMessage
*
chain
));
LDAP_F
int
ldap_parse_reference
LDAP_P
((
LDAP
*
ld
,
LDAPMessage
*
ref
,
char
***
referralsp
,
LDAPControl
***
serverctrls
,
int
freeit
));
/*
...
...
@@ -730,6 +738,10 @@ LDAP_F int ldap_count_reference LDAP_P(( LDAP *ld, LDAPMessage *chain ));
LDAP_F
LDAPMessage
*
ldap_first_entry
LDAP_P
((
LDAP
*
ld
,
LDAPMessage
*
chain
));
LDAP_F
LDAPMessage
*
ldap_next_entry
LDAP_P
((
LDAP
*
ld
,
LDAPMessage
*
entry
));
LDAP_F
int
ldap_count_entries
LDAP_P
((
LDAP
*
ld
,
LDAPMessage
*
chain
));
LDAP_F
int
ldap_get_entry_controls
LDAP_P
((
LDAP
*
ld
,
LDAPMessage
*
entry
,
LDAPControl
***
serverctrls
));
/*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment