Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-25 09:14:55

0001 /* GIO - GLib Input, Output and Streaming Library
0002  *
0003  * Copyright © 2025 Collabora Ltd.
0004  *
0005  * SPDX-License-Identifier: LGPL-2.1-or-later
0006  *
0007  * This library is free software; you can redistribute it and/or
0008  * modify it under the terms of the GNU Lesser General Public
0009  * License as published by the Free Software Foundation; either
0010  * version 2.1 of the License, or (at your option) any later version.
0011  *
0012  * This library is distributed in the hope that it will be useful,
0013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
0015  * Lesser General Public License for more details.
0016  *
0017  * You should have received a copy of the GNU Lesser General
0018  * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
0019  *
0020  * Authors: Jakub Adam <jakub.adam@collabora.com>
0021  */
0022 
0023 #ifndef __G_IP_TOS_MESSAGE_H__
0024 #define __G_IP_TOS_MESSAGE_H__
0025 
0026 #include <gio/gsocketcontrolmessage.h>
0027 
0028 G_BEGIN_DECLS
0029 
0030 #define G_TYPE_IP_TOS_MESSAGE (g_ip_tos_message_get_type ())
0031 
0032 GIO_AVAILABLE_IN_2_88
0033 G_DECLARE_FINAL_TYPE (GIPTosMessage, g_ip_tos_message, G, IP_TOS_MESSAGE, GSocketControlMessage)
0034 
0035 GIO_AVAILABLE_IN_2_88
0036 GSocketControlMessage *g_ip_tos_message_new (guint8 dscp, GEcnCodePoint ecn);
0037 
0038 GIO_AVAILABLE_IN_2_88
0039 guint8 g_ip_tos_message_get_dscp (GIPTosMessage *message);
0040 
0041 GIO_AVAILABLE_IN_2_88
0042 GEcnCodePoint g_ip_tos_message_get_ecn (GIPTosMessage *message);
0043 
0044 G_END_DECLS
0045 
0046 #endif /* __G_IP_TOS_MESSAGE_H__ */