Fix a mixup of singular and plural
[glib.git] / gio / gsocketclient.h
blob0cf6bf53524f6e54b97ed605cdbf7a3a81db495b
1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2008, 2009 Codethink Limited
4 * Copyright © 2009 Red Hat, Inc
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as published
8 * by the Free Software Foundation; either version 2 of the licence or (at
9 * your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General
17 * Public License along with this library; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
19 * Boston, MA 02111-1307, USA.
21 * Authors: Ryan Lortie <desrt@desrt.ca>
22 * Alexander Larsson <alexl@redhat.com>
25 #ifndef __G_SOCKET_CLIENT_H__
26 #define __G_SOCKET_CLIENT_H__
28 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
29 #error "Only <gio/gio.h> can be included directly."
30 #endif
32 #include <gio/giotypes.h>
34 G_BEGIN_DECLS
36 #define G_TYPE_SOCKET_CLIENT (g_socket_client_get_type ())
37 #define G_SOCKET_CLIENT(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
38 G_TYPE_SOCKET_CLIENT, GSocketClient))
39 #define G_SOCKET_CLIENT_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
40 G_TYPE_SOCKET_CLIENT, GSocketClientClass))
41 #define G_IS_SOCKET_CLIENT(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
42 G_TYPE_SOCKET_CLIENT))
43 #define G_IS_SOCKET_CLIENT_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
44 G_TYPE_SOCKET_CLIENT))
45 #define G_SOCKET_CLIENT_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
46 G_TYPE_SOCKET_CLIENT, GSocketClientClass))
48 typedef struct _GSocketClientPrivate GSocketClientPrivate;
49 typedef struct _GSocketClientClass GSocketClientClass;
51 struct _GSocketClientClass
53 GObjectClass parent_class;
55 void (* event) (GSocketClient *client,
56 GSocketClientEvent event,
57 GSocketConnectable *connectable,
58 GIOStream *connection);
60 /* Padding for future expansion */
61 void (*_g_reserved1) (void);
62 void (*_g_reserved2) (void);
63 void (*_g_reserved3) (void);
64 void (*_g_reserved4) (void);
67 struct _GSocketClient
69 GObject parent_instance;
70 GSocketClientPrivate *priv;
73 GLIB_AVAILABLE_IN_ALL
74 GType g_socket_client_get_type (void) G_GNUC_CONST;
76 GLIB_AVAILABLE_IN_ALL
77 GSocketClient *g_socket_client_new (void);
79 GLIB_AVAILABLE_IN_ALL
80 GSocketFamily g_socket_client_get_family (GSocketClient *client);
81 GLIB_AVAILABLE_IN_ALL
82 void g_socket_client_set_family (GSocketClient *client,
83 GSocketFamily family);
84 GLIB_AVAILABLE_IN_ALL
85 GSocketType g_socket_client_get_socket_type (GSocketClient *client);
86 GLIB_AVAILABLE_IN_ALL
87 void g_socket_client_set_socket_type (GSocketClient *client,
88 GSocketType type);
89 GLIB_AVAILABLE_IN_ALL
90 GSocketProtocol g_socket_client_get_protocol (GSocketClient *client);
91 GLIB_AVAILABLE_IN_ALL
92 void g_socket_client_set_protocol (GSocketClient *client,
93 GSocketProtocol protocol);
94 GLIB_AVAILABLE_IN_ALL
95 GSocketAddress *g_socket_client_get_local_address (GSocketClient *client);
96 GLIB_AVAILABLE_IN_ALL
97 void g_socket_client_set_local_address (GSocketClient *client,
98 GSocketAddress *address);
99 GLIB_AVAILABLE_IN_ALL
100 guint g_socket_client_get_timeout (GSocketClient *client);
101 GLIB_AVAILABLE_IN_ALL
102 void g_socket_client_set_timeout (GSocketClient *client,
103 guint timeout);
104 GLIB_AVAILABLE_IN_ALL
105 gboolean g_socket_client_get_enable_proxy (GSocketClient *client);
106 GLIB_AVAILABLE_IN_ALL
107 void g_socket_client_set_enable_proxy (GSocketClient *client,
108 gboolean enable);
110 GLIB_AVAILABLE_IN_ALL
111 gboolean g_socket_client_get_tls (GSocketClient *client);
112 GLIB_AVAILABLE_IN_ALL
113 void g_socket_client_set_tls (GSocketClient *client,
114 gboolean tls);
115 GLIB_AVAILABLE_IN_ALL
116 GTlsCertificateFlags g_socket_client_get_tls_validation_flags (GSocketClient *client);
117 GLIB_AVAILABLE_IN_ALL
118 void g_socket_client_set_tls_validation_flags (GSocketClient *client,
119 GTlsCertificateFlags flags);
120 GLIB_AVAILABLE_IN_2_36
121 GProxyResolver *g_socket_client_get_proxy_resolver (GSocketClient *client);
122 GLIB_AVAILABLE_IN_2_36
123 void g_socket_client_set_proxy_resolver (GSocketClient *client,
124 GProxyResolver *proxy_resolver);
126 GLIB_AVAILABLE_IN_ALL
127 GSocketConnection * g_socket_client_connect (GSocketClient *client,
128 GSocketConnectable *connectable,
129 GCancellable *cancellable,
130 GError **error);
131 GLIB_AVAILABLE_IN_ALL
132 GSocketConnection * g_socket_client_connect_to_host (GSocketClient *client,
133 const gchar *host_and_port,
134 guint16 default_port,
135 GCancellable *cancellable,
136 GError **error);
137 GLIB_AVAILABLE_IN_ALL
138 GSocketConnection * g_socket_client_connect_to_service (GSocketClient *client,
139 const gchar *domain,
140 const gchar *service,
141 GCancellable *cancellable,
142 GError **error);
143 GLIB_AVAILABLE_IN_ALL
144 GSocketConnection * g_socket_client_connect_to_uri (GSocketClient *client,
145 const gchar *uri,
146 guint16 default_port,
147 GCancellable *cancellable,
148 GError **error);
149 GLIB_AVAILABLE_IN_ALL
150 void g_socket_client_connect_async (GSocketClient *client,
151 GSocketConnectable *connectable,
152 GCancellable *cancellable,
153 GAsyncReadyCallback callback,
154 gpointer user_data);
155 GLIB_AVAILABLE_IN_ALL
156 GSocketConnection * g_socket_client_connect_finish (GSocketClient *client,
157 GAsyncResult *result,
158 GError **error);
159 GLIB_AVAILABLE_IN_ALL
160 void g_socket_client_connect_to_host_async (GSocketClient *client,
161 const gchar *host_and_port,
162 guint16 default_port,
163 GCancellable *cancellable,
164 GAsyncReadyCallback callback,
165 gpointer user_data);
166 GLIB_AVAILABLE_IN_ALL
167 GSocketConnection * g_socket_client_connect_to_host_finish (GSocketClient *client,
168 GAsyncResult *result,
169 GError **error);
171 GLIB_AVAILABLE_IN_ALL
172 void g_socket_client_connect_to_service_async (GSocketClient *client,
173 const gchar *domain,
174 const gchar *service,
175 GCancellable *cancellable,
176 GAsyncReadyCallback callback,
177 gpointer user_data);
178 GLIB_AVAILABLE_IN_ALL
179 GSocketConnection * g_socket_client_connect_to_service_finish (GSocketClient *client,
180 GAsyncResult *result,
181 GError **error);
182 GLIB_AVAILABLE_IN_ALL
183 void g_socket_client_connect_to_uri_async (GSocketClient *client,
184 const gchar *uri,
185 guint16 default_port,
186 GCancellable *cancellable,
187 GAsyncReadyCallback callback,
188 gpointer user_data);
189 GLIB_AVAILABLE_IN_ALL
190 GSocketConnection * g_socket_client_connect_to_uri_finish (GSocketClient *client,
191 GAsyncResult *result,
192 GError **error);
193 GLIB_AVAILABLE_IN_ALL
194 void g_socket_client_add_application_proxy (GSocketClient *client,
195 const gchar *protocol);
197 G_END_DECLS
199 #endif /* __G_SOCKET_CLIENT_H___ */