comparison libpurple/certificate.h @ 18952:974d110cf7b1

- libpurple is now responsible for some cleanup and final deletion of a VerificationRequest
author William Ehlhardt <williamehlhardt@gmail.com>
date Tue, 26 Jun 2007 21:59:09 +0000
parents 11e88e451bfb
children 89b32569890c
comparison
equal deleted inserted replaced
18951:11e88e451bfb 18952:974d110cf7b1
188 */ 188 */
189 void (* start_verification)(PurpleCertificateVerificationRequest *vrq); 189 void (* start_verification)(PurpleCertificateVerificationRequest *vrq);
190 190
191 /** 191 /**
192 * Destroy a completed Request under this Verifier 192 * Destroy a completed Request under this Verifier
193 * The function pointed to here is only responsible for cleaning up
194 * whatever PurpleCertificateVerificationRequest::data points to.
195 * It should not call free(vrq)
193 * 196 *
194 * @param vrq Request to destroy 197 * @param vrq Request to destroy
195 */ 198 */
196 void (* destroy_request)(PurpleCertificateVerificationRequest *vrq); 199 void (* destroy_request)(PurpleCertificateVerificationRequest *vrq);
197 }; 200 };