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
c26db69f
Commit
c26db69f
authored
25 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Add prototypes for ldap_parse_result() and friends.
parent
ca2145cc
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/ldap.h
+25
-0
25 additions, 0 deletions
include/ldap.h
with
25 additions
and
0 deletions
include/ldap.h
+
25
−
0
View file @
c26db69f
...
...
@@ -534,6 +534,14 @@ ldap_extended_operation_s LDAP_P((
char
**
retoidp
,
struct
berval
**
retdatap
));
LDAP_F
(
int
)
ldap_parse_extended_result
LDAP_P
((
LDAP
*
ld
,
LDAPMessage
*
res
,
char
**
retoidp
,
struct
berval
**
retdatap
,
int
freeit
));
/*
* in abandon.c:
*/
...
...
@@ -606,6 +614,12 @@ ldap_sasl_bind_s LDAP_P((
LDAPControl
**
clientctrls
,
struct
berval
**
servercredp
));
LDAP_F
(
int
)
ldap_parse_sasl_bind_result
LDAP_P
((
LDAP
*
ld
,
LDAPMessage
*
res
,
struct
berval
**
servercredp
,
int
freeit
));
/*
* in bind.c:
...
...
@@ -1089,6 +1103,17 @@ ldap_result LDAP_P((
struct
timeval
*
timeout
,
LDAPMessage
**
result
));
LDAP_F
(
int
)
ldap_parse_result
LDAP_P
((
LDAP
*
ld
,
LDAPMessage
*
res
,
int
*
errcodep
,
char
**
matcheddnp
,
char
**
errmsgp
,
char
***
referralsp
,
LDAPControl
***
serverctrls
,
int
freeit
));
LDAP_F
(
int
)
ldap_msgtype
LDAP_P
((
LDAPMessage
*
lm
));
...
...
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