1 /* 2 * 3 * BlueZ - Bluetooth protocol stack for Linux 4 * 5 * Copyright (C) 2006-2008 Nokia Corporation 6 * Copyright (C) 2004-2008 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 adapter *adapter, const char *name, 39 const char *path, uint8_t capability, 40 agent_remove_cb cb, void *remove_cb_data); 41 42 int agent_destroy(struct agent *agent, gboolean exited); 43 44 int agent_authorize(struct agent *agent, const char *path, 45 const char *uuid, agent_cb cb, void *user_data); 46 47 int agent_request_pincode(struct agent *agent, struct device *device, 48 agent_pincode_cb cb, void *user_data); 49 50 int agent_confirm_mode_change(struct agent *agent, const char *new_mode, 51 agent_cb cb, void *user_data); 52 53 int agent_request_passkey(struct agent *agent, struct device *device, 54 agent_passkey_cb cb, void *user_data); 55 56 int agent_request_confirmation(struct agent *agent, struct device *device, 57 uint32_t passkey, agent_cb cb, 58 void *user_data); 59 60 int agent_display_passkey(struct agent *agent, struct device *device, 61 uint32_t passkey); 62 63 int agent_cancel(struct agent *agent); 64 65 uint8_t agent_get_io_capability(struct agent *agent); 66 67 gboolean agent_matches(struct agent *agent, const char *name, const char *path); 68 69 void agent_init(void); 70 void agent_exit(void); 71 72