]> git.sur5r.net Git - openldap/commitdiff
Tweak the codes
authorKurt Zeilenga <kurt@openldap.org>
Thu, 11 Dec 2003 07:28:01 +0000 (07:28 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Thu, 11 Dec 2003 07:28:01 +0000 (07:28 +0000)
include/ldap.h
servers/slapd/slap.h

index 67310c9c01db499fa2cea5939e270470ce66540c..bc033789ab36ac3a99127339374be28d5984f2d7 100644 (file)
@@ -211,6 +211,7 @@ typedef struct ldapcontrol {
 
 #define LDAP_SYNC_NONE                                 0x00
 #define LDAP_SYNC_REFRESH_ONLY                 0x01
+#define LDAP_SYNC_RESERVED                             0x02
 #define LDAP_SYNC_REFRESH_AND_PERSIST  0x03
 
 #define LDAP_SYNC_REFRESH_PRESENTS             0
@@ -478,16 +479,16 @@ typedef struct ldapcontrol {
  * Based on draft-ietf-ldap-c-api-xx
  * but with new (negative) codes
  */
-#define LDAP_SERVER_DOWN               (-1)
-#define LDAP_LOCAL_ERROR               (-2)
-#define LDAP_ENCODING_ERROR            (-3)
-#define LDAP_DECODING_ERROR            (-4)
-#define LDAP_TIMEOUT                   (-5)
-#define LDAP_AUTH_UNKNOWN              (-6)
-#define LDAP_FILTER_ERROR              (-7)
-#define LDAP_USER_CANCELLED            (-8)
-#define LDAP_PARAM_ERROR               (-9)
-#define LDAP_NO_MEMORY                 (-10)
+#define LDAP_SERVER_DOWN                               (-1)
+#define LDAP_LOCAL_ERROR                               (-2)
+#define LDAP_ENCODING_ERROR                            (-3)
+#define LDAP_DECODING_ERROR                            (-4)
+#define LDAP_TIMEOUT                                   (-5)
+#define LDAP_AUTH_UNKNOWN                              (-6)
+#define LDAP_FILTER_ERROR                              (-7)
+#define LDAP_USER_CANCELLED                            (-8)
+#define LDAP_PARAM_ERROR                               (-9)
+#define LDAP_NO_MEMORY                                 (-10)
 #define LDAP_CONNECT_ERROR                             (-11)
 #define LDAP_NOT_SUPPORTED                             (-12)
 #define LDAP_CONTROL_NOT_FOUND                 (-13)
index d67b3ee8d2149043bd39f97b2504efeb683eb32f..7dc3b219a779c8f24e03193665bdf4b0e71a8a78 100644 (file)
@@ -103,13 +103,13 @@ LDAP_BEGIN_DECL
 #define SLAP_TEXT_BUFLEN (256)
 
 /* psuedo error code indicating abandoned operation */
-#define SLAPD_ABANDON (-1)
+#define SLAPD_ABANDON (-1024)
 
 /* psuedo error code indicating disconnect */
-#define SLAPD_DISCONNECT (-2)
+#define SLAPD_DISCONNECT (-1025)
 
 /* unknown config file directive */
-#define SLAP_CONF_UNKNOWN (-2)
+#define SLAP_CONF_UNKNOWN (-1026)
 
 /* We assume "C" locale, that is US-ASCII */
 #define ASCII_SPACE(c) ( (c) == ' ' )
@@ -2016,10 +2016,10 @@ typedef struct slap_op {
 
        char o_sync;
        char o_sync_mode;
-#define SLAP_SYNC_NONE                                 (0x0)
-#define SLAP_SYNC_REFRESH                              (0x1)
-#define SLAP_SYNC_PERSIST                              (0x2)
-#define SLAP_SYNC_REFRESH_AND_PERSIST  (0x3)
+#define SLAP_SYNC_NONE                                 LDAP_SYNC_NONE
+#define SLAP_SYNC_REFRESH                              LDAP_SYNC_REFRESH_ONLY
+#define SLAP_SYNC_PERSIST                              LDAP_SYNC_RESERVED
+#define SLAP_SYNC_REFRESH_AND_PERSIST  LDAP_SYNC_REFRESH_AND_PERSIST
        struct sync_cookie      o_sync_state;
        int                                     o_sync_rhint;
        struct berval           o_sync_cid;
@@ -2292,7 +2292,7 @@ typedef int (SLAP_CTRL_PARSE_FN) LDAP_P((
        SlapReply *rs,
        LDAPControl *ctrl ));
 
-#define SLMALLOC_SLAB_SIZE     1048576
+#define SLMALLOC_SLAB_SIZE     (1024*1024)
 
 LDAP_END_DECL