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