Tue, 26 Jun 2007 19:46:35 +0000
- Add purple_certificate_register_builtins
| libpurple/certificate.c | file | annotate | diff | comparison | revisions | |
| libpurple/certificate.h | file | annotate | diff | comparison | revisions |
--- 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.