It is 'registered', not 'registred'
[glib.git] / gio / gunixconnection.h
blob83f2c983b0cf7f28120f9271d2895ef0bd4a1ec4
1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2009 Codethink Limited
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.
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.
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.
20 * Authors: Ryan Lortie <desrt@desrt.ca>
23 #ifndef __G_UNIX_CONNECTION_H__
24 #define __G_UNIX_CONNECTION_H__
26 #include <gio/gio.h>
28 G_BEGIN_DECLS
30 #define G_TYPE_UNIX_CONNECTION (g_unix_connection_get_type ())
31 #define G_UNIX_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
32 G_TYPE_UNIX_CONNECTION, GUnixConnection))
33 #define G_UNIX_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
34 G_TYPE_UNIX_CONNECTION, GUnixConnectionClass))
35 #define G_IS_UNIX_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
36 G_TYPE_UNIX_CONNECTION))
37 #define G_IS_UNIX_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
38 G_TYPE_UNIX_CONNECTION))
39 #define G_UNIX_CONNECTION_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
40 G_TYPE_UNIX_CONNECTION, GUnixConnectionClass))
42 typedef struct _GUnixConnection GUnixConnection;
43 typedef struct _GUnixConnectionPrivate GUnixConnectionPrivate;
44 typedef struct _GUnixConnectionClass GUnixConnectionClass;
46 struct _GUnixConnectionClass
48 GSocketConnectionClass parent_class;
51 struct _GUnixConnection
53 GSocketConnection parent_instance;
54 GUnixConnectionPrivate *priv;
57 GType g_unix_connection_get_type (void);
59 gboolean g_unix_connection_send_fd (GUnixConnection *connection,
60 gint fd,
61 GCancellable *cancellable,
62 GError **error);
63 gint g_unix_connection_receive_fd (GUnixConnection *connection,
64 GCancellable *cancellable,
65 GError **error);
67 gboolean g_unix_connection_send_credentials (GUnixConnection *connection,
68 GCancellable *cancellable,
69 GError **error);
70 GLIB_AVAILABLE_IN_2_32
71 void g_unix_connection_send_credentials_async (GUnixConnection *connection,
72 GCancellable *cancellable,
73 GAsyncReadyCallback callback,
74 gpointer user_data);
75 GLIB_AVAILABLE_IN_2_32
76 gboolean g_unix_connection_send_credentials_finish (GUnixConnection *connection,
77 GAsyncResult *result,
78 GError **error);
80 GLIB_AVAILABLE_IN_2_32
81 GCredentials *g_unix_connection_receive_credentials (GUnixConnection *connection,
82 GCancellable *cancellable,
83 GError **error);
84 GLIB_AVAILABLE_IN_2_32
85 void g_unix_connection_receive_credentials_async (GUnixConnection *connection,
86 GCancellable *cancellable,
87 GAsyncReadyCallback callback,
88 gpointer user_data);
89 GCredentials *g_unix_connection_receive_credentials_finish (GUnixConnection *connection,
90 GAsyncResult *result,
91 GError **error);
93 G_END_DECLS
95 #endif /* __G_UNIX_CONNECTION_H__ */