Mercurial > pidgin.yaz
changeset 18950:f78a9efa9eaf
- Add purple_certificate_register_builtins
author | William Ehlhardt <williamehlhardt@gmail.com> |
---|---|
date | Tue, 26 Jun 2007 19:46:35 +0000 |
parents | 8902f0d7e40f |
children | 11e88e451bfb |
files | libpurple/certificate.c libpurple/certificate.h |
diffstat | 2 files changed, 14 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/certificate.c Tue Jun 26 01:04:45 2007 +0000 +++ b/libpurple/certificate.c Tue Jun 26 19:46:35 2007 +0000 @@ -115,7 +115,14 @@ g_list_free(crt_list); } +/****************************************************************************/ +/* Subsystem */ +/****************************************************************************/ +void +purple_certificate_register_builtins(void) +{ +} PurpleCertificateScheme * purple_certificate_find_scheme(const gchar *name)
--- a/libpurple/certificate.h Tue Jun 26 01:04:45 2007 +0000 +++ b/libpurple/certificate.h Tue Jun 26 19:46:35 2007 +0000 @@ -299,6 +299,13 @@ /*****************************************************************************/ /*@{*/ +/** + * Registers the "universal" PurpleCertificateVerifier and + * PurpleCertificatePool types that libpurple knows about + */ +void +purple_certificate_register_builtins(void); + /** Look up a registered CertificateScheme by name * @param name The scheme name. Case insensitive. * @return Pointer to the located Scheme, or NULL if it isn't found.