]> git.sur5r.net Git - openldap/blob - include/lutil_ldap.h
Extended ber_mem functions, add context argument.
[openldap] / include / lutil_ldap.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2003 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_freedefs LDAP_P((
27         void *defaults ));
28
29 LDAP_LUTIL_F( void * )
30 lutil_sasl_defaults LDAP_P((
31         LDAP *ld,
32         char *mech,
33         char *realm,
34         char *authcid,
35         char *passwd,
36         char *authzid ));
37
38 LDAP_LUTIL_F( int )
39 lutil_sasl_interact LDAP_P((
40         LDAP *ld, unsigned flags, void *defaults, void *p ));
41
42 LDAP_END_DECL
43
44 #endif /* _LUTIL_LDAP_H */