mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 02:29:34 -05:00
add comments here and there
This commit is contained in:
parent
0de4adaf09
commit
f2bcd9c762
2 changed files with 6 additions and 4 deletions
|
|
@ -171,6 +171,7 @@ typedef struct berval {
|
|||
char *bv_val;
|
||||
} BerValue;
|
||||
|
||||
/* this should be moved to lber-int.h */
|
||||
#ifdef __MINGW32__
|
||||
# undef LDAP_F_PRE
|
||||
# ifdef LIBLBER_DECL
|
||||
|
|
|
|||
|
|
@ -421,8 +421,8 @@ typedef struct ldapmsg LDAPMessage;
|
|||
typedef struct ldap_filt_info {
|
||||
char *lfi_filter;
|
||||
char *lfi_desc;
|
||||
int lfi_scope; /* LDAP_SCOPE_BASE, etc */
|
||||
int lfi_isexact; /* exact match filter? */
|
||||
int lfi_scope;
|
||||
int lfi_isexact;
|
||||
struct ldap_filt_info *lfi_next;
|
||||
} LDAPFiltInfo;
|
||||
|
||||
|
|
@ -451,9 +451,10 @@ typedef struct ldap_filt_desc {
|
|||
|
||||
|
||||
/*
|
||||
* structure representing an ldap connection
|
||||
* structure representing an ldap session which can
|
||||
* encompass connections to multiple servers (in the
|
||||
* face of referrals).
|
||||
*/
|
||||
|
||||
typedef struct ldap LDAP;
|
||||
|
||||
#define LDAP_DEREF_NEVER 0x00
|
||||
|
|
|
|||
Loading…
Reference in a new issue