1 /** @page certificate-signals Certificate Signals
4 @signal certificate-stored
5 @signal certificate-deleted
12 @signaldef certificate-stored
14 void (*certificate_stored)(PurpleCertificatePool *pool, const gchar *id, gpointer data);
17 Emitted when a pool stores a certificate. Connect to the pool instance.
18 @param pool Pool the certificate has been stored into
19 @param id Key the certificate was stored under
22 @signaldef certificate-deleted
24 void (*certificate_deleted)(PurpleCertificatePool *pool, const gchar *id, gpointer data);
27 Emitted when a pool deletes a certificate. Connect to the pool instance.
28 @param pool Pool the certificate was deleted from
29 @param id Key that was deleted
33 // vim: syntax=c.doxygen tw=75 et