Imported Upstream version 2.50.0
[platform/upstream/glib-networking.git] / tls / gnutls / gtlsserverconnection-gnutls.h
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright 2010 Red Hat, Inc.
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU Lesser General Public License as published
7  * by the Free Software Foundation; either version 2 of the licence or (at
8  * your option) any later version.
9  *
10  * See the included COPYING file for more information.
11  *
12  * In addition, when the library is used with OpenSSL, a special
13  * exception applies. Refer to the LICENSE_EXCEPTION file for details.
14  */
15
16 #ifndef __G_TLS_SERVER_CONNECTION_GNUTLS_H__
17 #define __G_TLS_SERVER_CONNECTION_GNUTLS_H__
18
19 #include <gio/gio.h> 
20 #include "gtlsconnection-gnutls.h"
21
22 G_BEGIN_DECLS
23
24 #define G_TYPE_TLS_SERVER_CONNECTION_GNUTLS            (g_tls_server_connection_gnutls_get_type ())
25 #define G_TLS_SERVER_CONNECTION_GNUTLS(inst)           (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_TLS_SERVER_CONNECTION_GNUTLS, GTlsServerConnectionGnutls))
26 #define G_TLS_SERVER_CONNECTION_GNUTLS_CLASS(class)    (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_TLS_SERVER_CONNECTION_GNUTLS, GTlsServerConnectionGnutlsClass))
27 #define G_IS_TLS_SERVER_CONNECTION_GNUTLS(inst)        (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_TLS_SERVER_CONNECTION_GNUTLS))
28 #define G_IS_TLS_SERVER_CONNECTION_GNUTLS_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_TLS_SERVER_CONNECTION_GNUTLS))
29 #define G_TLS_SERVER_CONNECTION_GNUTLS_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), G_TYPE_TLS_SERVER_CONNECTION_GNUTLS, GTlsServerConnectionGnutlsClass))
30
31 typedef struct _GTlsServerConnectionGnutlsPrivate                   GTlsServerConnectionGnutlsPrivate;
32 typedef struct _GTlsServerConnectionGnutlsClass                     GTlsServerConnectionGnutlsClass;
33 typedef struct _GTlsServerConnectionGnutls                          GTlsServerConnectionGnutls;
34
35 struct _GTlsServerConnectionGnutlsClass
36 {
37   GTlsConnectionGnutlsClass parent_class;
38 };
39
40 struct _GTlsServerConnectionGnutls
41 {
42   GTlsConnectionGnutls parent_instance;
43   GTlsServerConnectionGnutlsPrivate *priv;
44 };
45
46 GType g_tls_server_connection_gnutls_get_type (void) G_GNUC_CONST;
47
48 G_END_DECLS
49
50 #endif /* __G_TLS_SERVER_CONNECTION_GNUTLS_H___ */