Revert "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
13 #ifndef __G_TLS_SERVER_CONNECTION_GNUTLS_H__
14 #define __G_TLS_SERVER_CONNECTION_GNUTLS_H__
15
16 #include <gio/gio.h> 
17 #include "gtlsconnection-gnutls.h"
18
19 G_BEGIN_DECLS
20
21 #define G_TYPE_TLS_SERVER_CONNECTION_GNUTLS            (g_tls_server_connection_gnutls_get_type ())
22 #define G_TLS_SERVER_CONNECTION_GNUTLS(inst)           (G_TYPE_CHECK_INSTANCE_CAST ((inst), G_TYPE_TLS_SERVER_CONNECTION_GNUTLS, GTlsServerConnectionGnutls))
23 #define G_TLS_SERVER_CONNECTION_GNUTLS_CLASS(class)    (G_TYPE_CHECK_CLASS_CAST ((class), G_TYPE_TLS_SERVER_CONNECTION_GNUTLS, GTlsServerConnectionGnutlsClass))
24 #define G_IS_TLS_SERVER_CONNECTION_GNUTLS(inst)        (G_TYPE_CHECK_INSTANCE_TYPE ((inst), G_TYPE_TLS_SERVER_CONNECTION_GNUTLS))
25 #define G_IS_TLS_SERVER_CONNECTION_GNUTLS_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), G_TYPE_TLS_SERVER_CONNECTION_GNUTLS))
26 #define G_TLS_SERVER_CONNECTION_GNUTLS_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), G_TYPE_TLS_SERVER_CONNECTION_GNUTLS, GTlsServerConnectionGnutlsClass))
27
28 typedef struct _GTlsServerConnectionGnutlsPrivate                   GTlsServerConnectionGnutlsPrivate;
29 typedef struct _GTlsServerConnectionGnutlsClass                     GTlsServerConnectionGnutlsClass;
30 typedef struct _GTlsServerConnectionGnutls                          GTlsServerConnectionGnutls;
31
32 struct _GTlsServerConnectionGnutlsClass
33 {
34   GTlsConnectionGnutlsClass parent_class;
35 };
36
37 struct _GTlsServerConnectionGnutls
38 {
39   GTlsConnectionGnutls parent_instance;
40   GTlsServerConnectionGnutlsPrivate *priv;
41 };
42
43 GType g_tls_server_connection_gnutls_get_type (void) G_GNUC_CONST;
44
45 G_END_DECLS
46
47 #endif /* __G_TLS_SERVER_CONNECTION_GNUTLS_H___ */