Tests: add session_bus_run() and use it where possible
[glib.git] / gio / gsocketcontrolmessage.h
blobaaa7c935dd9b1a504669d3dbfda8ac1305f14e6a
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_SOCKET_CONTROL_MESSAGE_H__
24 #define __G_SOCKET_CONTROL_MESSAGE_H__
26 #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
27 #error "Only <gio/gio.h> can be included directly."
28 #endif
30 #include <gio/giotypes.h>
32 G_BEGIN_DECLS
34 #define G_TYPE_SOCKET_CONTROL_MESSAGE (g_socket_control_message_get_type ())
35 #define G_SOCKET_CONTROL_MESSAGE(inst) (G_TYPE_CHECK_INSTANCE_CAST ((inst), \
36 G_TYPE_SOCKET_CONTROL_MESSAGE, \
37 GSocketControlMessage))
38 #define G_SOCKET_CONTROL_MESSAGE_CLASS(class) (G_TYPE_CHECK_CLASS_CAST ((class), \
39 G_TYPE_SOCKET_CONTROL_MESSAGE, \
40 GSocketControlMessageClass))
41 #define G_IS_SOCKET_CONTROL_MESSAGE(inst) (G_TYPE_CHECK_INSTANCE_TYPE ((inst), \
42 G_TYPE_SOCKET_CONTROL_MESSAGE))
43 #define G_IS_SOCKET_CONTROL_MESSAGE_CLASS(class) (G_TYPE_CHECK_CLASS_TYPE ((class), \
44 G_TYPE_SOCKET_CONTROL_MESSAGE))
45 #define G_SOCKET_CONTROL_MESSAGE_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), \
46 G_TYPE_SOCKET_CONTROL_MESSAGE, \
47 GSocketControlMessageClass))
49 typedef struct _GSocketControlMessagePrivate GSocketControlMessagePrivate;
50 typedef struct _GSocketControlMessageClass GSocketControlMessageClass;
52 /**
53 * GSocketControlMessageClass:
54 * @get_size: gets the size of the message.
55 * @get_level: gets the protocol of the message.
56 * @get_type: gets the protocol specific type of the message.
57 * @serialize: Writes out the message data.
58 * @deserialize: Tries to deserialize a message.
59 **/
61 struct _GSocketControlMessageClass
63 GObjectClass parent_class;
65 gsize (* get_size) (GSocketControlMessage *message);
66 int (* get_level) (GSocketControlMessage *message);
67 int (* get_type) (GSocketControlMessage *message);
68 void (* serialize) (GSocketControlMessage *message,
69 gpointer data);
70 GSocketControlMessage *(* deserialize) (int level,
71 int type,
72 gsize size,
73 gpointer data);
75 /*< private >*/
77 /* Padding for future expansion */
78 void (*_g_reserved1) (void);
79 void (*_g_reserved2) (void);
80 void (*_g_reserved3) (void);
81 void (*_g_reserved4) (void);
82 void (*_g_reserved5) (void);
85 struct _GSocketControlMessage
87 GObject parent_instance;
88 GSocketControlMessagePrivate *priv;
91 GLIB_AVAILABLE_IN_ALL
92 GType g_socket_control_message_get_type (void) G_GNUC_CONST;
93 GLIB_AVAILABLE_IN_ALL
94 gsize g_socket_control_message_get_size (GSocketControlMessage *message);
95 GLIB_AVAILABLE_IN_ALL
96 int g_socket_control_message_get_level (GSocketControlMessage *message);
97 GLIB_AVAILABLE_IN_ALL
98 int g_socket_control_message_get_msg_type (GSocketControlMessage *message);
99 GLIB_AVAILABLE_IN_ALL
100 void g_socket_control_message_serialize (GSocketControlMessage *message,
101 gpointer data);
102 GLIB_AVAILABLE_IN_ALL
103 GSocketControlMessage *g_socket_control_message_deserialize (int level,
104 int type,
105 gsize size,
106 gpointer data);
109 G_END_DECLS
111 #endif /* __G_SOCKET_CONTROL_MESSAGE_H__ */