1/* GIO - GLib Input, Output and Streaming Library
2 *
3 * Copyright © 2009 Codethink Limited
4 *
5 * SPDX-License-Identifier: LGPL-2.1-or-later
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General
18 * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 *
20 * Authors: Ryan Lortie <desrt@desrt.ca>
21 */
22
23#ifndef __G_SOCKET_CONTROL_MESSAGE_H__
24#define __G_SOCKET_CONTROL_MESSAGE_H__
25
26#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
27#error "Only <gio/gio.h> can be included directly."
28#endif
29
30#include <gio/giotypes.h>
31
32G_BEGIN_DECLS
33
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))
48
49typedef struct _GSocketControlMessagePrivate GSocketControlMessagePrivate;
50typedef struct _GSocketControlMessageClass GSocketControlMessageClass;
51
52G_DEFINE_AUTOPTR_CLEANUP_FUNC (GSocketControlMessage, g_object_unref)
53
54/**
55 * GSocketControlMessageClass:
56 * @get_size: gets the size of the message.
57 * @get_level: gets the protocol of the message.
58 * @get_type: gets the protocol specific type of the message.
59 * @serialize: Writes out the message data.
60 * @deserialize: Tries to deserialize a message.
61 *
62 * Class structure for #GSocketControlMessage.
63 **/
64
65struct _GSocketControlMessageClass
66{
67 GObjectClass parent_class;
68
69 gsize (* get_size) (GSocketControlMessage *message);
70 int (* get_level) (GSocketControlMessage *message);
71 int (* get_type) (GSocketControlMessage *message);
72 void (* serialize) (GSocketControlMessage *message,
73 gpointer data);
74 GSocketControlMessage *(* deserialize) (int level,
75 int type,
76 gsize size,
77 gpointer data);
78
79 /*< private >*/
80
81 /* Padding for future expansion */
82 void (*_g_reserved1) (void);
83 void (*_g_reserved2) (void);
84 void (*_g_reserved3) (void);
85 void (*_g_reserved4) (void);
86 void (*_g_reserved5) (void);
87};
88
89struct _GSocketControlMessage
90{
91 GObject parent_instance;
92 GSocketControlMessagePrivate *priv;
93};
94
95GIO_AVAILABLE_IN_ALL
96GType g_socket_control_message_get_type (void) G_GNUC_CONST;
97GIO_AVAILABLE_IN_ALL
98gsize g_socket_control_message_get_size (GSocketControlMessage *message);
99GIO_AVAILABLE_IN_ALL
100int g_socket_control_message_get_level (GSocketControlMessage *message);
101GIO_AVAILABLE_IN_ALL
102int g_socket_control_message_get_msg_type (GSocketControlMessage *message);
103GIO_AVAILABLE_IN_ALL
104void g_socket_control_message_serialize (GSocketControlMessage *message,
105 gpointer data);
106GIO_AVAILABLE_IN_ALL
107GSocketControlMessage *g_socket_control_message_deserialize (int level,
108 int type,
109 gsize size,
110 gpointer data);
111
112
113G_END_DECLS
114
115#endif /* __G_SOCKET_CONTROL_MESSAGE_H__ */
116