mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-12-15 23:14:38 +08:00
32ffe8f9d6
GObexApparam abstract the handling of application parameter tags, it can be used to read/parse application parameter header data using g_obex_apparam_get_* functions or to generate the data using g_obex_apparam_set_*.
60 lines
2.2 KiB
C
60 lines
2.2 KiB
C
/*
|
|
*
|
|
* OBEX library with GLib integration
|
|
*
|
|
* Copyright (C) 2012 Intel Corporation.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
#ifndef __GOBEX_APPARAM_H
|
|
#define __GOBEX_APPARAM_H
|
|
|
|
#include <glib.h>
|
|
|
|
typedef struct _GObexApparam GObexApparam;
|
|
|
|
GObexApparam *g_obex_apparam_decode(const void *data, gsize size);
|
|
gssize g_obex_apparam_encode(GObexApparam *apparam, void *buf, gsize size);
|
|
|
|
GObexApparam *g_obex_apparam_set_bytes(GObexApparam *apparam, guint8 id,
|
|
const void *value, gsize size);
|
|
GObexApparam *g_obex_apparam_set_uint8(GObexApparam *apparam, guint8 id,
|
|
guint8 value);
|
|
GObexApparam *g_obex_apparam_set_uint16(GObexApparam *apparam, guint8 id,
|
|
guint16 value);
|
|
GObexApparam *g_obex_apparam_set_uint32(GObexApparam *apparam, guint8 id,
|
|
guint32 value);
|
|
GObexApparam *g_obex_apparam_set_uint64(GObexApparam *apparam, guint8 id,
|
|
guint64 value);
|
|
GObexApparam *g_obex_apparam_set_string(GObexApparam *apparam, guint8 id,
|
|
const char *value);
|
|
|
|
gboolean g_obex_apparam_get_bytes(GObexApparam *apparam, guint8 id,
|
|
const guint8 **val, gsize *len);
|
|
gboolean g_obex_apparam_get_uint8(GObexApparam *apparam, guint8 id,
|
|
guint8 *value);
|
|
gboolean g_obex_apparam_get_uint16(GObexApparam *apparam, guint8 id,
|
|
guint16 *value);
|
|
gboolean g_obex_apparam_get_uint32(GObexApparam *apparam, guint8 id,
|
|
guint32 *value);
|
|
gboolean g_obex_apparam_get_uint64(GObexApparam *apparam, guint8 id,
|
|
guint64 *value);
|
|
char *g_obex_apparam_get_string(GObexApparam *apparam, guint8 id);
|
|
|
|
void g_obex_apparam_free(GObexApparam *apparam);
|
|
|
|
#endif /* __GOBEX_APPARAM_H */
|