cleanup
[platform/upstream/glib.git] / gio / gunixfdmessage.h
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright © 2009 Codethink Limited
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  * 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_FD_MESSAGE_H__
22 #define __G_UNIX_FD_MESSAGE_H__
23
24 #include <gio/gio.h>
25 #include <gio/gunixfdlist.h>
26
27 G_BEGIN_DECLS
28
29 #define G_TYPE_UNIX_FD_MESSAGE                              (g_unix_fd_message_get_type ())
30 #define G_UNIX_FD_MESSAGE(inst)                             (G_TYPE_CHECK_INSTANCE_CAST ((inst),                     \
31                                                              G_TYPE_UNIX_FD_MESSAGE, GUnixFDMessage))
32 #define G_UNIX_FD_MESSAGE_CLASS(class)                      (G_TYPE_CHECK_CLASS_CAST ((class),                       \
33                                                              G_TYPE_UNIX_FD_MESSAGE, GUnixFDMessageClass))
34 #define G_IS_UNIX_FD_MESSAGE(inst)                          (G_TYPE_CHECK_INSTANCE_TYPE ((inst),                     \
35                                                              G_TYPE_UNIX_FD_MESSAGE))
36 #define G_IS_UNIX_FD_MESSAGE_CLASS(class)                   (G_TYPE_CHECK_CLASS_TYPE ((class),                       \
37                                                              G_TYPE_UNIX_FD_MESSAGE))
38 #define G_UNIX_FD_MESSAGE_GET_CLASS(inst)                   (G_TYPE_INSTANCE_GET_CLASS ((inst),                      \
39                                                              G_TYPE_UNIX_FD_MESSAGE, GUnixFDMessageClass))
40
41 typedef struct _GUnixFDMessagePrivate                       GUnixFDMessagePrivate;
42 typedef struct _GUnixFDMessageClass                         GUnixFDMessageClass;
43 typedef struct _GUnixFDMessage                              GUnixFDMessage;
44
45 struct _GUnixFDMessageClass
46 {
47   GSocketControlMessageClass parent_class;
48
49   /*< private >*/
50
51   /* Padding for future expansion */
52   void (*_g_reserved1) (void);
53   void (*_g_reserved2) (void);
54 };
55
56 struct _GUnixFDMessage
57 {
58   GSocketControlMessage parent_instance;
59   GUnixFDMessagePrivate *priv;
60 };
61
62 GLIB_AVAILABLE_IN_ALL
63 GType                   g_unix_fd_message_get_type                      (void) G_GNUC_CONST;
64 GLIB_AVAILABLE_IN_ALL
65 GSocketControlMessage * g_unix_fd_message_new_with_fd_list              (GUnixFDList     *fd_list);
66 GLIB_AVAILABLE_IN_ALL
67 GSocketControlMessage * g_unix_fd_message_new                           (void);
68
69 GLIB_AVAILABLE_IN_ALL
70 GUnixFDList *           g_unix_fd_message_get_fd_list                   (GUnixFDMessage  *message);
71
72 GLIB_AVAILABLE_IN_ALL
73 gint *                  g_unix_fd_message_steal_fds                     (GUnixFDMessage  *message,
74                                                                          gint            *length);
75 GLIB_AVAILABLE_IN_ALL
76 gboolean                g_unix_fd_message_append_fd                     (GUnixFDMessage  *message,
77                                                                          gint             fd,
78                                                                          GError         **error);
79
80 G_END_DECLS
81
82 #endif /* __G_UNIX_FD_MESSAGE_H__ */