~bluetooth/bluez/vivid-phone-overlay

« back to all changes in this revision

Viewing changes to attrib/gattrib.h

  • Committer: Simon Fels
  • Date: 2015-09-11 09:01:46 UTC
  • Revision ID: morphis@gravedo.de-20150911090146-4c0ln9s7ec3xf0nx
Import package bluez_4.101-0ubuntu25.1~overlay4 from stable phone overlay PPA

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *
 
3
 *  BlueZ - Bluetooth protocol stack for Linux
 
4
 *
 
5
 *  Copyright (C) 2010  Nokia Corporation
 
6
 *  Copyright (C) 2010  Marcel Holtmann <marcel@holtmann.org>
 
7
 *
 
8
 *
 
9
 *  This program is free software; you can redistribute it and/or modify
 
10
 *  it under the terms of the GNU General Public License as published by
 
11
 *  the Free Software Foundation; either version 2 of the License, or
 
12
 *  (at your option) any later version.
 
13
 *
 
14
 *  This program is distributed in the hope that it will be useful,
 
15
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 *  GNU General Public License for more details.
 
18
 *
 
19
 *  You should have received a copy of the GNU General Public License
 
20
 *  along with this program; if not, write to the Free Software
 
21
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
22
 *
 
23
 */
 
24
#ifndef __GATTRIB_H
 
25
#define __GATTRIB_H
 
26
 
 
27
#ifdef __cplusplus
 
28
extern "C" {
 
29
#endif
 
30
 
 
31
#define GATTRIB_ALL_EVENTS 0xFF
 
32
#define GATTRIB_ALL_REQS 0xFE
 
33
 
 
34
struct _GAttrib;
 
35
typedef struct _GAttrib GAttrib;
 
36
 
 
37
typedef void (*GAttribResultFunc) (guint8 status, const guint8 *pdu,
 
38
                                        guint16 len, gpointer user_data);
 
39
typedef void (*GAttribDisconnectFunc)(gpointer user_data);
 
40
typedef void (*GAttribDebugFunc)(const char *str, gpointer user_data);
 
41
typedef void (*GAttribNotifyFunc)(const guint8 *pdu, guint16 len,
 
42
                                                        gpointer user_data);
 
43
 
 
44
GAttrib *g_attrib_new(GIOChannel *io);
 
45
GAttrib *g_attrib_ref(GAttrib *attrib);
 
46
void g_attrib_unref(GAttrib *attrib);
 
47
 
 
48
GIOChannel *g_attrib_get_channel(GAttrib *attrib);
 
49
 
 
50
gboolean g_attrib_set_destroy_function(GAttrib *attrib,
 
51
                GDestroyNotify destroy, gpointer user_data);
 
52
 
 
53
guint g_attrib_send(GAttrib *attrib, guint id, guint8 opcode,
 
54
                        const guint8 *pdu, guint16 len, GAttribResultFunc func,
 
55
                        gpointer user_data, GDestroyNotify notify);
 
56
 
 
57
gboolean g_attrib_cancel(GAttrib *attrib, guint id);
 
58
gboolean g_attrib_cancel_all(GAttrib *attrib);
 
59
 
 
60
gboolean g_attrib_set_debug(GAttrib *attrib,
 
61
                GAttribDebugFunc func, gpointer user_data);
 
62
 
 
63
guint g_attrib_register(GAttrib *attrib, guint8 opcode,
 
64
                GAttribNotifyFunc func, gpointer user_data,
 
65
                                        GDestroyNotify notify);
 
66
 
 
67
gboolean g_attrib_is_encrypted(GAttrib *attrib);
 
68
 
 
69
uint8_t *g_attrib_get_buffer(GAttrib *attrib, int *len);
 
70
gboolean g_attrib_set_mtu(GAttrib *attrib, int mtu);
 
71
 
 
72
gboolean g_attrib_unregister(GAttrib *attrib, guint id);
 
73
gboolean g_attrib_unregister_all(GAttrib *attrib);
 
74
 
 
75
#ifdef __cplusplus
 
76
}
 
77
#endif
 
78
#endif