1 /* GIO - GLib Input, Output and Streaming Library 2 * 3 * Copyright © 2009 Codethink Limited 4 * 5 * This library is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU Lesser General Public 7 * License as published by the Free Software Foundation; either 8 * version 2.1 of the License, or (at your option) any later version. 9 * 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. 14 * 15 * You should have received a copy of the GNU Lesser General 16 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>. 17 * 18 * Authors: Ryan Lortie <desrt@desrt.ca> 19 */ 20 21 #ifndef __G_UNIX_CONNECTION_H__ 22 #define __G_UNIX_CONNECTION_H__ 23 24 #include <gio/gio.h> 25 26 G_BEGIN_DECLS 27 28 #define G_TYPE_UNIX_CONNECTION (g_unix_connection_get_type ()) 29 #define G_UNIX_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \ 30 G_TYPE_UNIX_CONNECTION, GUnixConnection)) 31 #define G_UNIX_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \ 32 G_TYPE_UNIX_CONNECTION, GUnixConnectionClass)) 33 #define G_IS_UNIX_CONNECTION(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \ 34 G_TYPE_UNIX_CONNECTION)) 35 #define G_IS_UNIX_CONNECTION_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \ 36 G_TYPE_UNIX_CONNECTION)) 37 #define G_UNIX_CONNECTION_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \ 38 G_TYPE_UNIX_CONNECTION, GUnixConnectionClass)) 39 40 typedef struct _GUnixConnection GUnixConnection; 41 typedef struct _GUnixConnectionPrivate GUnixConnectionPrivate; 42 typedef struct _GUnixConnectionClass GUnixConnectionClass; 43 44 G_DEFINE_AUTOPTR_CLEANUP_FUNC(GUnixConnection, g_object_unref) 45 46 struct _GUnixConnectionClass 47 { 48 GSocketConnectionClass parent_class; 49 }; 50 51 struct _GUnixConnection 52 { 53 GSocketConnection parent_instance; 54 GUnixConnectionPrivate *priv; 55 }; 56 57 GLIB_AVAILABLE_IN_ALL 58 GType g_unix_connection_get_type (void); 59 60 GLIB_AVAILABLE_IN_ALL 61 gboolean g_unix_connection_send_fd (GUnixConnection *connection, 62 gint fd, 63 GCancellable *cancellable, 64 GError **error); 65 GLIB_AVAILABLE_IN_ALL 66 gint g_unix_connection_receive_fd (GUnixConnection *connection, 67 GCancellable *cancellable, 68 GError **error); 69 70 GLIB_AVAILABLE_IN_ALL 71 gboolean g_unix_connection_send_credentials (GUnixConnection *connection, 72 GCancellable *cancellable, 73 GError **error); 74 GLIB_AVAILABLE_IN_2_32 75 void g_unix_connection_send_credentials_async (GUnixConnection *connection, 76 GCancellable *cancellable, 77 GAsyncReadyCallback callback, 78 gpointer user_data); 79 GLIB_AVAILABLE_IN_2_32 80 gboolean g_unix_connection_send_credentials_finish (GUnixConnection *connection, 81 GAsyncResult *result, 82 GError **error); 83 84 GLIB_AVAILABLE_IN_2_32 85 GCredentials *g_unix_connection_receive_credentials (GUnixConnection *connection, 86 GCancellable *cancellable, 87 GError **error); 88 GLIB_AVAILABLE_IN_2_32 89 void g_unix_connection_receive_credentials_async (GUnixConnection *connection, 90 GCancellable *cancellable, 91 GAsyncReadyCallback callback, 92 gpointer user_data); 93 GLIB_AVAILABLE_IN_ALL 94 GCredentials *g_unix_connection_receive_credentials_finish (GUnixConnection *connection, 95 GAsyncResult *result, 96 GError **error); 97 98 G_END_DECLS 99 100 #endif /* __G_UNIX_CONNECTION_H__ */ 101