Moving files to packaging and extracing new tarball.
[profile/ivi/glib2.git] / gio / gtlsbackend.h
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright (C) 2010 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
22 #error "Only <gio/gio.h> can be included directly."
23 #endif
24
25 #ifndef __G_TLS_BACKEND_H__
26 #define __G_TLS_BACKEND_H__
27
28 #include <gio/giotypes.h>
29
30 G_BEGIN_DECLS
31
32 /**
33  * G_TLS_BACKEND_EXTENSION_POINT_NAME:
34  *
35  * Extension point for TLS functionality via #GTlsBackend.
36  * See <link linkend="extending-gio">Extending GIO</link>.
37  */
38 #define G_TLS_BACKEND_EXTENSION_POINT_NAME "gio-tls-backend"
39
40 #define G_TYPE_TLS_BACKEND               (g_tls_backend_get_type ())
41 #define G_TLS_BACKEND(obj)               (G_TYPE_CHECK_INSTANCE_CAST ((obj), G_TYPE_TLS_BACKEND, GTlsBackend))
42 #define G_IS_TLS_BACKEND(obj)            (G_TYPE_CHECK_INSTANCE_TYPE ((obj), G_TYPE_TLS_BACKEND))
43 #define G_TLS_BACKEND_GET_INTERFACE(obj) (G_TYPE_INSTANCE_GET_INTERFACE ((obj), G_TYPE_TLS_BACKEND, GTlsBackendInterface))
44
45 /**
46  * GTlsBackend:
47  *
48  * TLS (Transport Layer Security, aka SSL) backend. This is an
49  * internal type used to coordinate the different classes implemented
50  * by a TLS backend.
51  *
52  * Since: 2.28
53  */
54
55 typedef struct _GTlsBackend          GTlsBackend;
56 typedef struct _GTlsBackendInterface GTlsBackendInterface;
57
58 /**
59  * GTlsBackendInterface:
60  * @g_iface: The parent interface.
61  * @supports_tls: returns whether the backend supports TLS.
62  * @get_default_database: returns a default #GTlsDatabase instance.
63  * @get_certificate_type: returns the #GTlsCertificate implementation type
64  * @get_client_connection_type: returns the #GTlsClientConnection implementation type
65  * @get_server_connection_type: returns the #GTlsServerConnection implementation type
66  * @get_file_database_type: returns the #GTlsFileDatabase implementation type.
67  *
68  * Provides an interface for describing TLS-related types.
69  *
70  * Since: 2.28
71  */
72 struct _GTlsBackendInterface
73 {
74   GTypeInterface g_iface;
75
76   /* methods */
77   gboolean       ( *supports_tls)               (GTlsBackend *backend);
78   GType          ( *get_certificate_type)       (void);
79   GType          ( *get_client_connection_type) (void);
80   GType          ( *get_server_connection_type) (void);
81   GType          ( *get_file_database_type)     (void);
82   GTlsDatabase * ( *get_default_database)       (GTlsBackend *backend);
83 };
84
85 GType          g_tls_backend_get_type                   (void) G_GNUC_CONST;
86
87 GTlsBackend *  g_tls_backend_get_default                (void);
88
89 GTlsDatabase * g_tls_backend_get_default_database       (GTlsBackend *backend);
90
91 gboolean       g_tls_backend_supports_tls               (GTlsBackend *backend);
92
93 GType          g_tls_backend_get_certificate_type       (GTlsBackend *backend);
94 GType          g_tls_backend_get_client_connection_type (GTlsBackend *backend);
95 GType          g_tls_backend_get_server_connection_type (GTlsBackend *backend);
96 GType          g_tls_backend_get_file_database_type     (GTlsBackend *backend);
97
98 G_END_DECLS
99
100 #endif /* __G_TLS_BACKEND_H__ */