OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 1 /* This Source Code Form is subject to the terms of the Mozilla Public |
2 * License, v. 2.0. If a copy of the MPL was not distributed with this | 2 * License, v. 2.0. If a copy of the MPL was not distributed with this |
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 #ifndef _LDAP_H_ | 5 #ifndef _LDAP_H_ |
6 #define _LDAP_H_ | 6 #define _LDAP_H_ |
7 | 7 |
8 #include "certt.h" | 8 #include "certt.h" |
9 #include "pkixt.h" | 9 #include "pkixt.h" |
10 | 10 |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 typedef struct LDAPAbandonRequestStruct LDAPAbandonRequest; | 139 typedef struct LDAPAbandonRequestStruct LDAPAbandonRequest; |
140 typedef struct protocolOpStruct LDAPProtocolOp; | 140 typedef struct protocolOpStruct LDAPProtocolOp; |
141 typedef struct LDAPMessageStruct LDAPMessage; | 141 typedef struct LDAPMessageStruct LDAPMessage; |
142 typedef LDAPAndFilter LDAPOrFilter; | 142 typedef LDAPAndFilter LDAPOrFilter; |
143 typedef LDAPAttributeValueAssertion LDAPEqualFilter; | 143 typedef LDAPAttributeValueAssertion LDAPEqualFilter; |
144 typedef LDAPAttributeValueAssertion LDAPGreaterOrEqualFilter; | 144 typedef LDAPAttributeValueAssertion LDAPGreaterOrEqualFilter; |
145 typedef LDAPAttributeValueAssertion LDAPLessOrEqualFilter; | 145 typedef LDAPAttributeValueAssertion LDAPLessOrEqualFilter; |
146 typedef LDAPAttributeValueAssertion LDAPApproxMatchFilter; | 146 typedef LDAPAttributeValueAssertion LDAPApproxMatchFilter; |
147 | 147 |
148 struct LDAPLocationStruct { | 148 struct LDAPLocationStruct { |
149 PRArenaPool *arena; | 149 PLArenaPool *arena; |
150 void *serverSite; | 150 void *serverSite; |
151 void **filterString; | 151 void **filterString; |
152 void **attrBitString; | 152 void **attrBitString; |
153 }; | 153 }; |
154 | 154 |
155 struct LDAPCertPairStruct { | 155 struct LDAPCertPairStruct { |
156 SECItem forward; | 156 SECItem forward; |
157 SECItem reverse; | 157 SECItem reverse; |
158 }; | 158 }; |
159 | 159 |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
305 struct PKIX_PL_LdapClientStruct { | 305 struct PKIX_PL_LdapClientStruct { |
306 PKIX_PL_LdapClient_InitiateFcn initiateFcn; | 306 PKIX_PL_LdapClient_InitiateFcn initiateFcn; |
307 PKIX_PL_LdapClient_ResumeFcn resumeFcn; | 307 PKIX_PL_LdapClient_ResumeFcn resumeFcn; |
308 }; | 308 }; |
309 | 309 |
310 #ifdef __cplusplus | 310 #ifdef __cplusplus |
311 } | 311 } |
312 #endif | 312 #endif |
313 | 313 |
314 #endif | 314 #endif |
OLD | NEW |