From f2bcd9c762f8064013b79de866473322bda1dbf1 Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Wed, 17 Nov 1999 01:55:29 +0000 Subject: [PATCH] add comments here and there --- include/lber.h | 1 + include/ldap.h | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/include/lber.h b/include/lber.h index b8c24f5c81..02a93cf5aa 100644 --- a/include/lber.h +++ b/include/lber.h @@ -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 diff --git a/include/ldap.h b/include/ldap.h index 6f6cd3aaff..79a1d18f8e 100644 --- a/include/ldap.h +++ b/include/ldap.h @@ -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 -- 2.39.5