aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-tls-certificate.h
diff options
context:
space:
mode:
authorCosimo Cecchi <cosimoc@gnome.org>2010-07-22 23:50:09 +0800
committerCosimo Cecchi <cosimoc@gnome.org>2010-08-13 22:22:21 +0800
commit92655cecb16b8f0d370d03450804a5cbc4fd89d2 (patch)
treed1955732571d1027c03655e4ca52f2d8b48091ad /libempathy/empathy-tls-certificate.h
parent81c51d3c1b3fd68cb31848ef86d8c3d1859aacdf (diff)
downloadgsoc2013-empathy-92655cecb16b8f0d370d03450804a5cbc4fd89d2.tar
gsoc2013-empathy-92655cecb16b8f0d370d03450804a5cbc4fd89d2.tar.gz
gsoc2013-empathy-92655cecb16b8f0d370d03450804a5cbc4fd89d2.tar.bz2
gsoc2013-empathy-92655cecb16b8f0d370d03450804a5cbc4fd89d2.tar.lz
gsoc2013-empathy-92655cecb16b8f0d370d03450804a5cbc4fd89d2.tar.xz
gsoc2013-empathy-92655cecb16b8f0d370d03450804a5cbc4fd89d2.tar.zst
gsoc2013-empathy-92655cecb16b8f0d370d03450804a5cbc4fd89d2.zip
Add EmpathyTLSCertificate.
Diffstat (limited to 'libempathy/empathy-tls-certificate.h')
-rw-r--r--libempathy/empathy-tls-certificate.h69
1 files changed, 69 insertions, 0 deletions
diff --git a/libempathy/empathy-tls-certificate.h b/libempathy/empathy-tls-certificate.h
new file mode 100644
index 000000000..de856be1e
--- /dev/null
+++ b/libempathy/empathy-tls-certificate.h
@@ -0,0 +1,69 @@
+/*
+ * empathy-tls-certificate.h - Header for EmpathyTLSCertificate
+ * Copyright (C) 2010 Collabora Ltd.
+ * @author Cosimo Cecchi <cosimo.cecchi@collabora.co.uk>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef __EMPATHY_TLS_CERTIFICATE_H__
+#define __EMPATHY_TLS_CERTIFICATE_H__
+
+#include <glib-object.h>
+#include <gio/gio.h>
+
+G_BEGIN_DECLS
+
+typedef struct _EmpathyTLSCertificate EmpathyTLSCertificate;
+typedef struct _EmpathyTLSCertificateClass EmpathyTLSCertificateClass;
+
+struct _EmpathyTLSCertificateClass {
+ GObjectClass parent_class;
+};
+
+struct _EmpathyTLSCertificate {
+ GObject parent;
+ gpointer priv;
+};
+
+GType empathy_tls_certificate_get_type (void);
+
+#define EMPATHY_TYPE_TLS_CERTIFICATE \
+ (empathy_tls_certificate_get_type ())
+#define EMPATHY_TLS_CERTIFICATE(obj) \
+ (G_TYPE_CHECK_INSTANCE_CAST((obj), EMPATHY_TYPE_TLS_CERTIFICATE, \
+ EmpathyTLSCertificate))
+#define EMPATHY_TLS_CERTIFICATE_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_CAST((klass), EMPATHY_TYPE_TLS_CERTIFICATE, \
+ EmpathyTLSCertificateClass))
+#define EMPATHY_IS_TLS_CERTIFICATE(obj) \
+ (G_TYPE_CHECK_INSTANCE_TYPE((obj), EMPATHY_TYPE_TLS_CERTIFICATE))
+#define EMPATHY_IS_TLS_CERTIFICATE_CLASS(klass) \
+ (G_TYPE_CHECK_CLASS_TYPE((klass), EMPATHY_TYPE_TLS_CERTIFICATE))
+#define EMPATHY_TLS_CERTIFICATE_GET_CLASS(obj) \
+ (G_TYPE_INSTANCE_GET_CLASS ((obj), EMPATHY_TYPE_TLS_CERTIFICATE, \
+ EmpathyTLSCertificateClass))
+
+void empathy_tls_certificate_new_async (const gchar *bus_name,
+ const gchar *object_path,
+ GAsyncReadyCallback callback,
+ gpointer user_data);
+
+EmpathyTLSCertificate * empathy_tls_certificate_new_finish (GAsyncResult * res,
+ GError **error);
+
+G_END_DECLS
+
+#endif /* #ifndef __EMPATHY_TLS_CERTIFICATE_H__*/