diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2010-07-23 01:28:23 +0800 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2010-08-13 22:22:22 +0800 |
commit | 3564f1760938f7312b3cd16f1c8c8227c44ab4ad (patch) | |
tree | 18ba9521fefe88ba1c2c3c8fcc28d0ea37a6b049 /libempathy/empathy-tls-certificate.h | |
parent | 7a8b4058baa7f61cf93aa41076047a6f08d0eecb (diff) | |
download | gsoc2013-empathy-3564f1760938f7312b3cd16f1c8c8227c44ab4ad.tar gsoc2013-empathy-3564f1760938f7312b3cd16f1c8c8227c44ab4ad.tar.gz gsoc2013-empathy-3564f1760938f7312b3cd16f1c8c8227c44ab4ad.tar.bz2 gsoc2013-empathy-3564f1760938f7312b3cd16f1c8c8227c44ab4ad.tar.lz gsoc2013-empathy-3564f1760938f7312b3cd16f1c8c8227c44ab4ad.tar.xz gsoc2013-empathy-3564f1760938f7312b3cd16f1c8c8227c44ab4ad.tar.zst gsoc2013-empathy-3564f1760938f7312b3cd16f1c8c8227c44ab4ad.zip |
Add the proxy properties and methods.
Mirror them on the GObject itself, for Empathy to use and consume them.
Diffstat (limited to 'libempathy/empathy-tls-certificate.h')
-rw-r--r-- | libempathy/empathy-tls-certificate.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libempathy/empathy-tls-certificate.h b/libempathy/empathy-tls-certificate.h index de856be1e..473134044 100644 --- a/libempathy/empathy-tls-certificate.h +++ b/libempathy/empathy-tls-certificate.h @@ -24,6 +24,8 @@ #include <glib-object.h> #include <gio/gio.h> +#include <extensions/extensions.h> + G_BEGIN_DECLS typedef struct _EmpathyTLSCertificate EmpathyTLSCertificate; @@ -64,6 +66,10 @@ void empathy_tls_certificate_new_async (const gchar *bus_name, EmpathyTLSCertificate * empathy_tls_certificate_new_finish (GAsyncResult * res, GError **error); +void empathy_tls_certificate_accept (EmpathyTLSCertificate *self); +void empathy_tls_certificate_reject (EmpathyTLSCertificate *self, + EmpTLSCertificateRejectReason reason); + G_END_DECLS #endif /* #ifndef __EMPATHY_TLS_CERTIFICATE_H__*/ |