Initialize Tizen 2.3
[framework/connectivity/bluez.git] / mobile / src / agent.h
1 /*
2  *
3  *  BlueZ - Bluetooth protocol stack for Linux
4  *
5  *  Copyright (C) 2006-2010  Nokia Corporation
6  *  Copyright (C) 2004-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
25 struct agent;
26
27 typedef void (*agent_cb) (struct agent *agent, DBusError *err,
28                                 void *user_data);
29
30 typedef void (*agent_pincode_cb) (struct agent *agent, DBusError *err,
31                                         const char *pincode, void *user_data);
32
33 typedef void (*agent_passkey_cb) (struct agent *agent, DBusError *err,
34                                         uint32_t passkey, void *user_data);
35
36 typedef void (*agent_remove_cb) (struct agent *agent, void *user_data);
37
38 struct agent *agent_create(struct btd_adapter *adapter, const char *name,
39                                 const char *path, uint8_t capability,
40                                 agent_remove_cb cb, void *remove_cb_data);
41
42 void agent_free(struct agent *agent);
43
44 int agent_authorize(struct agent *agent, const char *path,
45                         const char *uuid, agent_cb cb, void *user_data,
46                         GDestroyNotify destroy);
47
48 int agent_request_pincode(struct agent *agent, struct btd_device *device,
49                                 agent_pincode_cb cb, gboolean secure,
50                                 void *user_data, GDestroyNotify destroy);
51
52 int agent_confirm_mode_change(struct agent *agent, const char *new_mode,
53                                 agent_cb cb, void *user_data,
54                                 GDestroyNotify destroy);
55
56 int agent_request_passkey(struct agent *agent, struct btd_device *device,
57                                 agent_passkey_cb cb, void *user_data,
58                                 GDestroyNotify destroy);
59
60 int agent_request_confirmation(struct agent *agent, struct btd_device *device,
61                                 uint32_t passkey, agent_cb cb,
62                                 void *user_data, GDestroyNotify destroy);
63
64 int agent_display_passkey(struct agent *agent, struct btd_device *device,
65                                 uint32_t passkey);
66
67 int agent_display_pincode(struct agent *agent, struct btd_device *device,
68                                 const char *pincode, agent_cb cb,
69                                 void *user_data, GDestroyNotify destroy);
70
71 int agent_cancel(struct agent *agent);
72
73 gboolean agent_is_busy(struct agent *agent, void *user_data);
74
75 uint8_t agent_get_io_capability(struct agent *agent);
76
77 gboolean agent_matches(struct agent *agent, const char *name, const char *path);
78
79 void agent_init(void);
80 void agent_exit(void);