simple.c

This is an example of doing a simple bind, that is, a bind with a DN and a password.

To compile this example on Unix:

cc -I /opt/isode/include -c simple.c 

To compile this example on Windows:

cl /nologo /I C:\Progra~1\Isode\include /c simple.c

To link this example on Unix:

cc -o simple simple.o -L/opt/isode/lib \
    -ldua -lisode -libase -lldap -llber \
    -lssl -lcrypto -lpthread

To link this example on Windows:

cl /nologo /o simple.exe simple.obj \
    C:\Progra~1\Isode\bin\libdua.lib
/*
* Copyright (c) 2005-2009, Isode Limited, London, England.
* All rights reserved.
*
* Acquisition and use of this software and related materials for any
* purpose requires a written licence agreement from Isode Limited,
* or a written licence from an organisation licenced by Isode Limited
* to grant such a licence.
*/
#include <stdio.h>
int main ( void )
{
DS_Session *ds = NULL;
DS_Indication *di = NULL;
DS_DN *dn = NULL;
DS_Status status;
status = DS_Initialize( );
if ( status != DS_E_NOERROR ) {
fprintf( stderr, "Initialization failed\n" );
return 1;
}
status = DS_String2DN( "cn=DSA Manager,cn=dsa,dc=example,dc=com", &dn );
if ( status != DS_E_NOERROR ) {
fprintf( stderr, "Bad DN\n" );
return 1;
}
status = DS_Session_New( "Internet=localhost+19999", 0, &ds );
if ( status != DS_E_NOERROR ) {
fprintf( stderr, "Failed to create session\n" );
return 1;
}
status = DS_BindSimpleSync( ds, dn, "secret", NULL, &di );
if ( DS_Indication_GetErrorCodes( di, &t, &v ) == DS_E_NOERROR &&
t != DS_E_SUCCESS )
status = DS_E_DSOPFAILED;
DS_DN_Delete( dn );
if ( status != DS_E_NOERROR ) {
fprintf( stderr, "Bind failed\n" );
return 1;
}
DS_UnbindSync( &ds );
return 0;
}
struct DS_DN DS_DN
Definition: dsapi_types.h:103
DS_Status
Definition: dsapi_const.h:66
DS_ErrorType
Definition: dsapi_const.h:138
void DS_UnbindSync(DS_Session **session_p)
Perform a synchronous directory unbind.
DS_Status DS_BindSimpleSync(DS_Session *session, const DS_DN *dn, const char *password, DS_CommonArgs *common_args, DS_Indication **indication_p)
Perform a synchronous directory bind using simple credentials.
@ DS_E_DSOPFAILED
Definition: dsapi_const.h:103
@ DS_E_NOERROR
Definition: dsapi_const.h:67
DS_Status DS_Indication_GetErrorCodes(DS_Indication *indication, DS_ErrorType *type_p, DS_ErrorValue *value_p)
Get the directory (operation) error type and value codes.
DS_Status DS_Session_New(const char *address, int force_tls, DS_Session **session_p)
Create an unbound directory session, validating the specified address.
Methods for session management and invoking directory operations.
struct DS_Indication DS_Indication
Definition: dsapi_types.h:121
struct DS_Session DS_Session
Definition: dsapi_types.h:44
DS_ErrorValue
Definition: dsapi_const.h:190
DS_Status DS_String2DN(const char *str_dn, DS_DN **dn_p)
Convert an LDAPv3 string formatted DN to the API structure.
void DS_Indication_Delete(DS_Indication *indication)
Free a DS_Indication structure.
void DS_DN_Delete(DS_DN *dn)
Free a DN.
DS_Status DS_Initialize(void)
Initialize the Simple Directory API.

All rights reserved © 2002 - 2024 Isode Ltd.