home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ldapsdk.zip / include / lutil_ldap.h < prev    next >
C/C++ Source or Header  |  2001-06-02  |  884b  |  41 lines

  1. /* $OpenLDAP$ */
  2. /*
  3.  * Copyright 1998-2001 The OpenLDAP Foundation, Redwood City, California, USA
  4.  * All rights reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted only as authorized by the OpenLDAP
  8.  * Public License.  A copy of this license is available at
  9.  * http://www.OpenLDAP.org/license.html or in file LICENSE in the
  10.  * top-level directory of the distribution.
  11.  */
  12.  
  13. #ifndef _LUTIL_LDAP_H
  14. #define _LUTIL_LDAP_H 1
  15.  
  16. #include <ldap_cdefs.h>
  17. #include <lber_types.h>
  18.  
  19. /*
  20.  * Include file for lutil LDAP routines
  21.  */
  22.  
  23. LDAP_BEGIN_DECL
  24.  
  25. LDAP_LUTIL_F( void * )
  26. lutil_sasl_defaults LDAP_P((
  27.     LDAP *ld,
  28.     char *mech,
  29.     char *realm,
  30.     char *authcid,
  31.     char *passwd,
  32.     char *authzid ));
  33.  
  34. LDAP_LUTIL_F( int )
  35. lutil_sasl_interact LDAP_P((
  36.     LDAP *ld, unsigned flags, void *defaults, void *p ));
  37.  
  38. LDAP_END_DECL
  39.  
  40. #endif /* _LUTIL_LDAP_H */
  41.