]> git.sur5r.net Git - openldap/blob - include/ldap_pvt.h
Imported <ldap.h> in <ldap_pvt.h> so ldap_pvt_sasl_bind() has necessary
[openldap] / include / ldap_pvt.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998,1999 The OpenLDAP Foundation, Redwood City, California, USA
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms are permitted only
7  * as authorized by the OpenLDAP Public License.  A copy of this
8  * license is available at http://www.OpenLDAP.org/license.html or
9  * in file LICENSE in the top-level directory of the distribution.
10  */
11 /*
12  * ldap-pvt.h - Header for ldap_pvt_ functions. These are meant to be used
13  *              by the OpenLDAP distribution only.
14  */
15
16 #ifndef _LDAP_PVT_H
17 #define _LDAP_PVT_H 1
18
19 #include <ldap_cdefs.h>
20 #include <lber.h>                               /* get ber_slen_t */
21
22 LDAP_BEGIN_DECL
23
24 LIBLDAP_F ( int )
25 ldap_pvt_domain2dn LDAP_P((
26         LDAP_CONST char *domain,
27         char **dn ));
28
29 struct hostent; /* avoid pulling in <netdb.h> */
30
31 LIBLDAP_F( char * )
32 ldap_pvt_ctime LDAP_P((
33         const time_t *tp,
34         char *buf ));
35
36 LIBLDAP_F( int )
37 ldap_pvt_gethostbyname_a LDAP_P((
38         const char *name, 
39         struct hostent *resbuf,
40         char **buf,
41         struct hostent **result,
42         int *herrno_ptr ));
43
44 LIBLDAP_F( int )
45 ldap_pvt_gethostbyaddr_a LDAP_P((
46         const char *addr,
47         int len,
48         int type,
49         struct hostent *resbuf,
50         char **buf,
51         struct hostent **result,
52         int *herrno_ptr ));
53
54
55 /* charray.c */
56
57 LIBLDAP_F( int )
58 ldap_charray_add LDAP_P((
59     char        ***a,
60     char        *s ));
61
62 LIBLDAP_F( int )
63 ldap_charray_merge LDAP_P((
64     char        ***a,
65     char        **s ));
66
67 LIBLDAP_F( void )
68 ldap_charray_free LDAP_P(( char **a ));
69
70 LIBLDAP_F( int )
71 ldap_charray_inlist LDAP_P((
72     char        **a,
73     char        *s ));
74
75 LIBLDAP_F( char ** )
76 ldap_charray_dup LDAP_P(( char **a ));
77
78 LIBLDAP_F( char ** )
79 ldap_str2charray LDAP_P((
80         char *str,
81         char *brkstr ));
82
83 /* url.c */
84 LIBLDAP_F (void) ldap_pvt_hex_unescape LDAP_P(( char *s ));
85 LIBLDAP_F (int) ldap_pvt_unhex( int c );
86
87 /* these macros assume 'x' is an ASCII x */
88 #define LDAP_DNSEPARATOR(c)     ((c) == ',' || (c) == ';')
89 #define LDAP_SEPARATOR(c)       ((c) == ',' || (c) == ';' || (c) == '+')
90 #define LDAP_SPACE(c)           ((c) == ' ' || (c) == '\n')
91
92 #define LDAP_LOWER(c)           ( (c) >= 'a' && (c) <= 'z' )
93 #define LDAP_UPPER(c)           ( (c) >= 'A' && (c) <= 'Z' )
94 #define LDAP_ALPHA(c)           ( LDAP_LOWER(c) || LDAP_UPPER(c) )
95 #define LDAP_DIGIT(c)           ( (c) >= '0' && (c) <= '9' )
96 #define LDAP_ALNUM(c)           ( LDAP_ALPHA(c) || LDAP_DIGIT(c) )
97
98 #define LDAP_LEADKEYCHAR(c)     ( LDAP_ALPHA(c) )
99 #define LDAP_KEYCHAR(c)         ( LDAP_ALNUM(c) || (c) == '-' )
100 #define LDAP_LEADOIDCHAR(c)     ( LDAP_DIGIT(c) )
101 #define LDAP_OIDCHAR(c)         ( LDAP_DIGIT(c) || (c) == '.' )
102
103 #define LDAP_LEADATTRCHAR(c)    ( LDAP_LEADKEYCHAR(c) || LDAP_LEADOIDCHAR(c) )
104 #define LDAP_ATTRCHAR(c)                ( LDAP_KEYCHAR((c)) || (c) == '.' )
105
106 #define LDAP_NEEDSESCAPE(c)     ((c) == '\\' || (c) == '"')
107
108 #ifdef HAVE_CYRUS_SASL
109 /* sasl.c */
110
111 #include <sasl.h>
112 #include <ldap.h> 
113
114 LIBLDAP_F (int) ldap_pvt_sasl_init LDAP_P(( void )); /* clientside init */
115 LIBLDAP_F (int) ldap_pvt_sasl_install LDAP_P(( Sockbuf *, void * ));
116 LIBLDAP_F (int) ldap_pvt_sasl_err2ldap LDAP_P(( int ));
117 LIBLDAP_F (int) ldap_pvt_sasl_bind LDAP_P(( LDAP *, LDAP_CONST char *, LDAP_CONST char *, LDAP_CONST sasl_callback_t *, LDAPControl **, LDAPControl ** ));
118 #endif /* HAVE_CYRUS_SASL */
119
120 /* search.c */
121 LIBLDAP_F( char * )
122 ldap_pvt_find_wildcard LDAP_P(( char *s ));
123
124 LIBLDAP_F( ber_slen_t )
125 ldap_pvt_filter_value_unescape LDAP_P(( char *filter ));
126
127 /* string.c */
128 LIBLDAP_F( char * )
129 ldap_pvt_str2upper LDAP_P(( char *str ));
130
131 LIBLDAP_F( char * )
132 ldap_pvt_str2lower LDAP_P(( char *str ));
133
134 /* tls.c */
135 struct ldapoptions;
136
137 LIBLDAP_F (int) ldap_pvt_tls_init LDAP_P(( void ));
138 LIBLDAP_F (int) ldap_pvt_tls_config LDAP_P(( struct ldapoptions *lo, int option, const char *arg ));
139 LIBLDAP_F (int) ldap_pvt_tls_connect LDAP_P(( Sockbuf *sb, void *ctx_arg ));
140 LIBLDAP_F (int) ldap_pvt_tls_accept LDAP_P(( Sockbuf *sb, void *ctx_arg ));
141 LIBLDAP_F (int) ldap_pvt_tls_get_option LDAP_P(( struct ldapoptions *lo, int option, void *arg ));
142 LIBLDAP_F (int) ldap_pvt_tls_set_option LDAP_P(( struct ldapoptions *lo, int option, void *arg ));
143 LIBLDAP_F (int) ldap_pvt_tls_inplace LDAP_P(( Sockbuf *sb ));
144 LIBLDAP_F (int) ldap_pvt_tls_start LDAP_P(( Sockbuf *sb, void *ctx_arg ));
145
146 LDAP_END_DECL
147
148 #endif
149