| 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 * pkix_pl_infoaccess.h | 5 * pkix_pl_infoaccess.h |
| 6 * | 6 * |
| 7 * InfoAccess Object Definitions | 7 * InfoAccess Object Definitions |
| 8 * | 8 * |
| 9 */ | 9 */ |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 /* see source file for function documentation */ | 25 /* see source file for function documentation */ |
| 26 | 26 |
| 27 PKIX_Error *pkix_pl_InfoAccess_RegisterSelf(void *plContext); | 27 PKIX_Error *pkix_pl_InfoAccess_RegisterSelf(void *plContext); |
| 28 | 28 |
| 29 PKIX_Error * | 29 PKIX_Error * |
| 30 pkix_pl_InfoAccess_CreateList( | 30 pkix_pl_InfoAccess_CreateList( |
| 31 CERTAuthInfoAccess **authInfoAccess, | 31 CERTAuthInfoAccess **authInfoAccess, |
| 32 PKIX_List **pAiaList, /* of PKIX_PL_InfoAccess */ | 32 PKIX_List **pAiaList, /* of PKIX_PL_InfoAccess */ |
| 33 void *plContext); | 33 void *plContext); |
| 34 | 34 |
| 35 #ifndef NSS_PKIX_NO_LDAP |
| 35 PKIX_Error * | 36 PKIX_Error * |
| 36 pkix_pl_InfoAccess_ParseLocation( | 37 pkix_pl_InfoAccess_ParseLocation( |
| 37 PKIX_PL_GeneralName *generalName, | 38 PKIX_PL_GeneralName *generalName, |
| 38 PLArenaPool *arena, | 39 PLArenaPool *arena, |
| 39 LDAPRequestParams *request, | 40 LDAPRequestParams *request, |
| 40 char **pDomainName, | 41 char **pDomainName, |
| 41 void *plContext); | 42 void *plContext); |
| 43 #endif /* !NSS_PKIX_NO_LDAP */ |
| 42 | 44 |
| 43 #ifdef __cplusplus | 45 #ifdef __cplusplus |
| 44 } | 46 } |
| 45 #endif | 47 #endif |
| 46 | 48 |
| 47 #endif /* _PKIX_PL_INFOACCESS_H */ | 49 #endif /* _PKIX_PL_INFOACCESS_H */ |
| OLD | NEW |