]> git.sur5r.net Git - openldap/commitdiff
Rename ldap_start_tls() to ldap_start_tls_s() for consistency sake.
authorKurt Zeilenga <kurt@openldap.org>
Tue, 13 Jun 2000 20:45:30 +0000 (20:45 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Tue, 13 Jun 2000 20:45:30 +0000 (20:45 +0000)
Misc other header changes.

clients/tools/ldapdelete.c
clients/tools/ldapmodify.c
clients/tools/ldapmodrdn.c
clients/tools/ldappasswd.c
clients/tools/ldapsearch.c
include/ldap.h
libraries/libldap/libldap.dsp
libraries/libldap/open.c

index 6e06b769e34ef3e005f0d27568e7c7940c8e0e04..4dc1d532cbf5af8320acaa7ee856ad1cbc8eb58b 100644 (file)
@@ -310,7 +310,7 @@ main( int argc, char **argv )
                fprintf( stderr, "Could not set LDAP_OPT_PROTOCOL_VERSION %d\n", version );
        }
 
-       if ( use_tls && ldap_start_tls( ld, NULL, NULL ) != LDAP_SUCCESS ) {
+       if ( use_tls && ldap_start_tls_s( ld, NULL, NULL ) != LDAP_SUCCESS ) {
                if ( use_tls > 1 ) {
                        ldap_perror( ld, "ldap_start_tls" );
                        return( EXIT_FAILURE );
index d2b453cd1e6fa3892abf1be2be41f51d97af55bd..352c79a40f9f316e763b8b23c59bd2cffd1c698b 100644 (file)
@@ -374,7 +374,7 @@ main( int argc, char **argv )
                fprintf( stderr, "Could not set LDAP_OPT_PROTOCOL_VERSION to %d\n", version );
        }
 
-       if ( use_tls && ldap_start_tls( ld, NULL, NULL ) != LDAP_SUCCESS ) {
+       if ( use_tls && ldap_start_tls_s( ld, NULL, NULL ) != LDAP_SUCCESS ) {
                if ( use_tls > 1 ) {
                        ldap_perror( ld, "ldap_start_tls" );
                        return( EXIT_FAILURE );
index 3aa05b10f073d3e363b3d821a61be97aa7829071..d26b741474b24f560a32f48bd4d0ff599ee06889 100644 (file)
@@ -357,7 +357,7 @@ main(int argc, char **argv)
                fprintf( stderr, "Could not set LDAP_OPT_PROTOCOL_VERSION %d\n", version );
        }
 
-       if ( use_tls && ldap_start_tls( ld, NULL, NULL ) != LDAP_SUCCESS ) {
+       if ( use_tls && ldap_start_tls_s( ld, NULL, NULL ) != LDAP_SUCCESS ) {
                if ( use_tls > 1 ) {
                        ldap_perror( ld, "ldap_start_tls" );
                        return( EXIT_FAILURE );
index 18b19c2d6143aebcb460273d14a8c544b56081d4..ba01854048123d8bf88443a59fd92b167989fa1a 100644 (file)
@@ -314,7 +314,7 @@ main( int argc, char *argv[] )
                fprintf( stderr, "Could not set LDAP_OPT_PROTOCOL_VERSION %d\n", version );
        }
 
-       if ( use_tls && ldap_start_tls( ld, NULL, NULL ) != LDAP_SUCCESS ) {
+       if ( use_tls && ldap_start_tls_s( ld, NULL, NULL ) != LDAP_SUCCESS ) {
                if ( use_tls > 1 ) {
                        ldap_perror( ld, "ldap_start_tls" );
                        return( EXIT_FAILURE );
index 0bae49a3e1530c3f27b31e876f286ab0582a2781..8b8aa3ee007e2eee58a5e30b32cb6284d719cac0 100644 (file)
@@ -517,7 +517,7 @@ main( int argc, char **argv )
                fprintf( stderr, "Could not set LDAP_OPT_PROTOCOL_VERSION %d\n", version );
        }
 
-       if ( use_tls && ldap_start_tls( ld, NULL, NULL ) != LDAP_SUCCESS ) {
+       if ( use_tls && ldap_start_tls_s( ld, NULL, NULL ) != LDAP_SUCCESS ) {
                if ( use_tls > 1 ) {
                        ldap_perror( ld, "ldap_start_tls" );
                        return( EXIT_FAILURE );
index 460d3811778e28d9a7311cab75ddb76ea2f921c2..911c4e91804403d8095f68617fa008ff3db85c18 100644 (file)
@@ -376,7 +376,7 @@ typedef struct ldapcontrol {
 
 #define LDAP_OTHER                     0x50
 
-#define LDAP_API_ERROR(n)              LDAP_RANGE((n),0x51,0xff) /* 81+ */
+#define LDAP_API_ERROR(n)              LDAP_RANGE((n),0x51,0x61) /* 81-97 */
 
 #define LDAP_SERVER_DOWN               0x51
 #define LDAP_LOCAL_ERROR               0x52
@@ -389,13 +389,14 @@ typedef struct ldapcontrol {
 #define LDAP_PARAM_ERROR               0x59
 #define LDAP_NO_MEMORY                 0x5a
 
-#define LDAP_CONNECT_ERROR                             0x5b    /* new */
-#define LDAP_NOT_SUPPORTED                             0x5c    /* new */
-#define LDAP_CONTROL_NOT_FOUND                 0x5d    /* new */
-#define LDAP_NO_RESULTS_RETURNED               0x5e    /* new */
-#define LDAP_MORE_RESULTS_TO_RETURN            0x5f    /* new */
-#define LDAP_CLIENT_LOOP                               0x60    /* new */
-#define LDAP_REFERRAL_LIMIT_EXCEEDED   0x61    /* new */
+/* not technically reserved for APIs */
+#define LDAP_CONNECT_ERROR                             0x5b    /* draft-ietf-ldap-c-api-xx */
+#define LDAP_NOT_SUPPORTED                             0x5c    /* draft-ietf-ldap-c-api-xx */
+#define LDAP_CONTROL_NOT_FOUND                 0x5d    /* draft-ietf-ldap-c-api-xx */
+#define LDAP_NO_RESULTS_RETURNED               0x5e    /* draft-ietf-ldap-c-api-xx */
+#define LDAP_MORE_RESULTS_TO_RETURN            0x5f    /* draft-ietf-ldap-c-api-xx */
+#define LDAP_CLIENT_LOOP                               0x60    /* draft-ietf-ldap-c-api-xx */
+#define LDAP_REFERRAL_LIMIT_EXCEEDED   0x61    /* draft-ietf-ldap-c-api-xx */
 
 /*
  * This structure represents both ldap messages and ldap responses.
@@ -612,17 +613,17 @@ ldap_parse_extended_result LDAP_P((
  * in abandon.c:
  */
 LIBLDAP_F( int )
-ldap_abandon LDAP_P((  /* deprecated */
-       LDAP *ld,
-       int msgid ));
-
-LIBLDAP_F( int )
 ldap_abandon_ext LDAP_P((
        LDAP                    *ld,
        int                             msgid,
        LDAPControl             **serverctrls,
        LDAPControl             **clientctrls ));
 
+LIBLDAP_F( int )
+ldap_abandon LDAP_P((  /* deprecated */
+       LDAP *ld,
+       int msgid ));
+
 
 /*
  * in add.c:
@@ -940,27 +941,6 @@ ldap_rename_s LDAP_P((
        LDAPControl **sctrls,
        LDAPControl **cctrls ));
 
-LIBLDAP_F( int )
-ldap_rename_ext LDAP_P((
-       LDAP                    *ld,
-       LDAP_CONST char *dn,
-       LDAP_CONST char *newrdn,
-       LDAP_CONST char *newparent,
-       int                             deleteoldrdn,
-       LDAPControl             **serverctrls,
-       LDAPControl             **clientctrls,
-       int                     *msgidp ));
-
-LIBLDAP_F( int )
-ldap_rename_ext_s LDAP_P((
-       LDAP                    *ld,
-       LDAP_CONST char *dn,
-       LDAP_CONST char *newrdn,
-       LDAP_CONST char *newparent,
-       int                             deleteoldrdn,
-       LDAPControl             **serverctrls,
-       LDAPControl             **clientctrls ));
-
 LIBLDAP_F( int )
 ldap_rename2 LDAP_P((  /* deprecated */
        LDAP *ld,
@@ -1008,12 +988,12 @@ ldap_modrdn2_s LDAP_P((  /* deprecated */
  * in open.c:
  */
 LIBLDAP_F( LDAP *)
-ldap_open LDAP_P((     /* deprecated */
+ldap_init LDAP_P((
        LDAP_CONST char *host,
        int port ));
 
 LIBLDAP_F( LDAP *)
-ldap_init LDAP_P((
+ldap_open LDAP_P((     /* deprecated */
        LDAP_CONST char *host,
        int port ));
 
@@ -1027,7 +1007,7 @@ ldap_initialize LDAP_P((
        LDAP_CONST char *url ));
 
 LIBLDAP_F( int )
-ldap_start_tls LDAP_P((
+ldap_start_tls_s LDAP_P((
        LDAP *ld,
        LDAPControl **serverctrls,
        LDAPControl **clientctrls ));
index 5a9f03affcf45bd2f6d8879464b9b10f2c59d19e..0ba5b193b54ea00f63727ea0442486bedc1f1dc8 100644 (file)
@@ -351,6 +351,10 @@ SOURCE=.\tls.c
 # End Source File
 # Begin Source File
 
+SOURCE=.\tmplout.c
+# End Source File
+# Begin Source File
+
 SOURCE=.\ufn.c
 # End Source File
 # Begin Source File
index 938739d7ebabb6b839ad737e960697c3db364287..f0a5a593df419905dd890d0f6e3f814e22145b91 100644 (file)
@@ -230,7 +230,7 @@ ldap_initialize( LDAP **ldp, LDAP_CONST char *url )
 }
 
 int
-ldap_start_tls ( LDAP *ld,
+ldap_start_tls_s ( LDAP *ld,
                                LDAPControl **serverctrls,
                                LDAPControl **clientctrls )
 {
@@ -249,8 +249,10 @@ ldap_start_tls ( LDAP *ld,
        for (lc = ld->ld_conns; lc != NULL; lc = lc->lconn_next) {
                if (ldap_pvt_tls_inplace(lc->lconn_sb) != 0)
                        return LDAP_OPERATIONS_ERROR;
+
                rc = ldap_extended_operation_s(ld, LDAP_EXOP_START_TLS,
                                                        NULL, serverctrls, clientctrls, &rspoid, &rspdata);
+
                if (rc != LDAP_SUCCESS)
                        return rc;
                if (rspoid != NULL)