struct Lisp_LDAP
{
/* lcrecord header */
struct lcrecord_header header;
/* The LDAP connection handle used by the LDAP API */
LDAP *ld;
/* Name of the host we connected to */
Lisp_Object host;
/* Status of the LDAP connection. */
int livep;
};
Two questions:
- Is there a reason not to set the ld field to NULL when the
connection is closed?
- Is there a reason to use livep instead of ld!=NULL ?
OG.