]> git.sur5r.net Git - openldap/blobdiff - servers/ldapd/common.h
Update default access usage comment.
[openldap] / servers / ldapd / common.h
index b5ea74af0e5fb936be3b1f115c0b6eeaef15bc44..9c7f567d616f1c12bfd3a9b8fd503f1eb9b74fba 100644 (file)
@@ -31,6 +31,15 @@ struct conn {
        struct conn     *c_next;
 };
 
+/*
+ * This structure represents a sequence of LDAPMod elements.
+ */
+typedef struct LDAPModList {
+       LDAPMod                 m;
+       struct LDAPModList      *mod_next;
+} LDAPModList;
+
+
 /*
  * This structure represents an outstanding request.  There is one of
  * these for each client request for which we have not yet received a
@@ -41,7 +50,7 @@ struct msg {
        int             m_msgid;        /* the message id */
        int             m_uniqid;       /* unique id for this message */
        int             m_msgtype;      /* the ldap operation type */
-       LDAPMod         *m_mods;        /* for modify operations only */
+       LDAPModList     *m_mods;        /* for modify operations only */
        BerElement      *m_ber;         /* the unparsed ber for the op */
        struct conn     *m_conn;        /* connection structure */
 #ifdef LDAP_CONNECTIONLESS