GSocketControlMessage: clean up confusing code
[platform/upstream/glib.git] / gio / gproxyconnection.h
1 /* GIO - GLib Input, Output and Streaming Library
2  * Copyright © 2010 Collabora Ltd.
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as published
6  * by the Free Software Foundation; either version 2 of the licence or (at
7  * your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General
15  * Public License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
17  * Boston, MA 02111-1307, USA.
18  *
19  * Authors: Nicolas Dufresne <nicolas.dufresne@collabora.co.uk>
20  *
21  */
22
23 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
24 #error "Only <gio/gio.h> can be included directly."
25 #endif
26
27 #ifndef __G_PROXY_PROXY_CONNECTION_H__
28 #define __G_PROXY_PROXY_CONNECTION_H__
29
30 #include <glib-object.h>
31 #include <gio/gtcpconnection.h>
32
33 G_BEGIN_DECLS
34
35 #define G_TYPE_PROXY_CONNECTION                  (_g_proxy_connection_get_type ())
36 #define G_PROXY_PROXY_CONNECTION(inst)           (G_TYPE_CHECK_INSTANCE_CAST ((inst),                     \
37                                                          G_TYPE_PROXY_CONNECTION, GProxyConnection))
38 #define G_PROXY_PROXY_CONNECTION_CLASS(class)    (G_TYPE_CHECK_CLASS_CAST ((class),                       \
39                                                          G_TYPE_PROXY_CONNECTION, GProxyConnectionClass))
40 #define G_IS_PROXY_CONNECTION(inst)              (G_TYPE_CHECK_INSTANCE_TYPE ((inst),                     \
41                                                          G_TYPE_PROXY_CONNECTION))
42 #define G_IS_PROXY_CONNECTION_CLASS(class)       (G_TYPE_CHECK_CLASS_TYPE ((class),                       \
43                                                          G_TYPE_PROXY_CONNECTION))
44 #define G_PROXY_PROXY_CONNECTION_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst),                      \
45                                                          G_TYPE_PROXY_CONNECTION, GProxyConnectionClass))
46
47 typedef struct _GProxyConnection                   GProxyConnection;
48 typedef struct _GProxyConnectionPrivate            GProxyConnectionPrivate;
49 typedef struct _GProxyConnectionClass              GProxyConnectionClass;
50
51 struct _GProxyConnectionClass
52 {
53   GTcpConnectionClass parent_class;
54 };
55
56 struct _GProxyConnection
57 {
58   GTcpConnection parent_instance;
59   GProxyConnectionPrivate *priv;
60 };
61
62 GType _g_proxy_connection_get_type (void) G_GNUC_CONST;
63
64 GSocketConnection *_g_proxy_connection_new (GTcpConnection *connection,
65                                             GIOStream      *io_stream);
66
67 G_END_DECLS
68
69 #endif /* __G_PROXY_PROXY_CONNECTION_H__ */