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_ldapresponse.h | 5 * pkix_pl_ldapresponse.h |
6 * | 6 * |
7 * LdapResponse Object Definitions | 7 * LdapResponse Object Definitions |
8 * | 8 * |
9 */ | 9 */ |
10 | 10 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 void *plContext); | 45 void *plContext); |
46 | 46 |
47 PKIX_Error * | 47 PKIX_Error * |
48 pkix_pl_LdapResponse_IsComplete( | 48 pkix_pl_LdapResponse_IsComplete( |
49 PKIX_PL_LdapResponse *response, | 49 PKIX_PL_LdapResponse *response, |
50 PKIX_Boolean *pIsComplete, | 50 PKIX_Boolean *pIsComplete, |
51 void *plContext); | 51 void *plContext); |
52 | 52 |
53 PKIX_Error * | 53 PKIX_Error * |
54 pkix_pl_LdapResponse_Decode( | 54 pkix_pl_LdapResponse_Decode( |
55 PRArenaPool *arena, | 55 PLArenaPool *arena, |
56 PKIX_PL_LdapResponse *response, | 56 PKIX_PL_LdapResponse *response, |
57 SECStatus *pStatus, | 57 SECStatus *pStatus, |
58 void *plContext); | 58 void *plContext); |
59 | 59 |
60 PKIX_Error * | 60 PKIX_Error * |
61 pkix_pl_LdapResponse_GetMessage( | 61 pkix_pl_LdapResponse_GetMessage( |
62 PKIX_PL_LdapResponse *response, | 62 PKIX_PL_LdapResponse *response, |
63 LDAPMessage **pMessage, | 63 LDAPMessage **pMessage, |
64 void *plContext); | 64 void *plContext); |
65 | 65 |
(...skipping 21 matching lines...) Expand all Loading... |
87 LDAPSearchResponseAttr ***pAttributes, | 87 LDAPSearchResponseAttr ***pAttributes, |
88 void *plContext); | 88 void *plContext); |
89 | 89 |
90 PKIX_Error *pkix_pl_LdapResponse_RegisterSelf(void *plContext); | 90 PKIX_Error *pkix_pl_LdapResponse_RegisterSelf(void *plContext); |
91 | 91 |
92 #ifdef __cplusplus | 92 #ifdef __cplusplus |
93 } | 93 } |
94 #endif | 94 #endif |
95 | 95 |
96 #endif /* _PKIX_PL_LDAPRESPONSE_H */ | 96 #endif /* _PKIX_PL_LDAPRESPONSE_H */ |
OLD | NEW |