diff libpurple/certificate.h @ 19006:dc60287ce426

- Add get_activation_time and get_expiration_time to CertificateScheme struct - Modify GnuTLS plugin to match
author William Ehlhardt <williamehlhardt@gmail.com>
date Mon, 09 Jul 2007 03:12:15 +0000
parents 47b06daea9d1
children 8228c5b1d181
line wrap: on
line diff
--- a/libpurple/certificate.h	Sun Jul 08 04:27:02 2007 +0000
+++ b/libpurple/certificate.h	Mon Jul 09 03:12:15 2007 +0000
@@ -224,6 +224,12 @@
 	 * @return Newly allocated string with the certificate subject.
 	 */
 	gchar * (* get_subject_name)(PurpleCertificate *crt);
+
+	/** Retrieve the certificate activation time */
+	time_t (* get_activation_time)(PurpleCertificate *crt);
+	/** Retrieve the expiration time */
+	time_t (* get_expiration_time)(PurpleCertificate *crt);
+	
 	/* TODO: Fill out this structure */
 };