]> git.sur5r.net Git - openldap/blobdiff - servers/slurpd/replica.c
Rework unprotected simple bind checks
[openldap] / servers / slurpd / replica.c
index 50aca4e77ef72525b543b732f56e4f96f3dda049..49fc9e178e0ba0d7cca7408b62505e01c31e2fdb 100644 (file)
@@ -1,4 +1,8 @@
 /* $OpenLDAP$ */
+/*
+ * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
+ * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+ */
 /*
  * Copyright (c) 1996 Regents of the University of Michigan.
  * All rights reserved.
 #include "portable.h"
 
 #include <stdio.h>
+#include <ac/stdlib.h>
 
 #include "slurp.h"
 #include "globals.h"
 
-
 /*
  * Just invoke the Ri's process() member function, and log the start and
  * finish.
@@ -35,13 +39,25 @@ replicate(
 {
     Ri         *ri = (Ri *) ri_arg;
 
+#ifdef NEW_LOGGING
+       LDAP_LOG ( SLURPD, ARGS, "replicate: "
+               "begin replication thread for %s:%d\n",
+           ((Ri *)ri)->ri_hostname, ((Ri *)ri)->ri_port, 0 );
+#else
     Debug( LDAP_DEBUG_ARGS, "begin replication thread for %s:%d\n",
            ((Ri *)ri)->ri_hostname, ((Ri *)ri)->ri_port, 0 );
+#endif
 
     ri->ri_process( ri );
 
+#ifdef NEW_LOGGING
+       LDAP_LOG ( SLURPD, ARGS, "replicate: "
+               "begin replication thread for %s:%d\n",
+           ri->ri_hostname, ri->ri_port, 0 );
+#else
     Debug( LDAP_DEBUG_ARGS, "end replication thread for %s:%d\n",
            ri->ri_hostname, ri->ri_port, 0 );
+#endif
     return NULL;
 }
 
@@ -58,8 +74,14 @@ start_replica_thread(
     /* POSIX_THREADS or compatible */
     if ( ldap_pvt_thread_create( &(ri->ri_tid), 0, replicate,
            (void *) ri ) != 0 ) {
+#ifdef NEW_LOGGING
+       LDAP_LOG ( SLURPD, ERR, "start_replica_thread: "
+               "replica %s:%d ldap_pvt_thread_create failed\n",
+           ri->ri_hostname, ri->ri_port, 0 );
+#else
        Debug( LDAP_DEBUG_ANY, "replica \"%s:%d\" ldap_pvt_thread_create failed\n",
                ri->ri_hostname, ri->ri_port, 0 );
+#endif
        return -1;
     }