mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 11:09:34 -05:00
Add prototypes for ldap_parse_result() and friends.
This commit is contained in:
parent
ca2145cccf
commit
c26db69fe1
1 changed files with 25 additions and 0 deletions
|
|
@ -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 ));
|
||||
|
|
|
|||
Loading…
Reference in a new issue