comparison libpurple/certificate.h @ 19060:c79b54f03f9d

- Add purple_certificate_pool_get_scheme helper function
author William Ehlhardt <williamehlhardt@gmail.com>
date Mon, 30 Jul 2007 06:50:31 +0000
parents 8cbc110456ac
children 6c0aad79c4c5
comparison
equal deleted inserted replaced
19059:a75d01f3a98e 19060:c79b54f03f9d
507 */ 507 */
508 gboolean 508 gboolean
509 purple_certificate_pool_usable(PurpleCertificatePool *pool); 509 purple_certificate_pool_usable(PurpleCertificatePool *pool);
510 510
511 /** 511 /**
512 * Looks up the scheme the pool operates under
513 *
514 * @param pool Pool to get the scheme of
515 *
516 * @return Pointer to the pool's scheme, or NULL if it isn't loaded.
517 * @see purple_certificate_pool_usable()
518 */
519 PurpleCertificateScheme *
520 purple_certificate_pool_get_scheme(PurpleCertificatePool *pool);
521
522 /**
512 * Check for presence of an ID in a pool. 523 * Check for presence of an ID in a pool.
513 * @param pool Pool to look in 524 * @param pool Pool to look in
514 * @param id ID to look for 525 * @param id ID to look for
515 * @return TRUE if the ID is in the pool, else FALSE 526 * @return TRUE if the ID is in the pool, else FALSE
516 */ 527 */