bluez/src/hcid.h

100 lines
2.7 KiB
C
Raw Normal View History

2002-03-09 05:12:35 +08:00
/*
*
* BlueZ - Bluetooth protocol stack for Linux
*
* Copyright (C) 2000-2001 Qualcomm Incorporated
* Copyright (C) 2002-2003 Maxim Krasnyansky <maxk@qualcomm.com>
2008-02-02 11:37:05 +08:00
* Copyright (C) 2002-2008 Marcel Holtmann <marcel@holtmann.org>
*
*
* This program is free software; you can redistribute it and/or modify
2005-10-30 06:36:31 +08:00
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
2005-10-30 06:36:31 +08:00
* 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.
*
2005-10-30 06:36:31 +08:00
* 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
*
2002-03-09 05:12:35 +08:00
*/
#define HCID_DEFAULT_DISCOVERABLE_TIMEOUT 180 /* 3 minutes */
2006-04-20 00:39:48 +08:00
2007-04-10 22:06:44 +08:00
/* When all services should trust a remote device */
#define GLOBAL_TRUST "[all]"
2007-06-07 18:14:58 +08:00
/*
* Scanning modes, used by DEV_SET_MODE
* off: remote devices are not allowed to find or connect to this device
* connectable: remote devices are allowed to connect, but they are not
* allowed to find it.
* discoverable: remote devices are allowed to connect and find this device
* limited: limited discoverable - GIAC + IAC enabled and set limited
* bit on device class.
*/
#define MODE_OFF 0x00
#define MODE_CONNECTABLE 0x01
#define MODE_DISCOVERABLE 0x02
#define MODE_LIMITED 0x03
#define MODE_UNKNOWN 0xff
2002-03-09 05:12:35 +08:00
struct device_opts {
2005-05-01 02:24:13 +08:00
unsigned long flags;
2004-02-09 18:08:18 +08:00
char *name;
2002-03-09 05:12:35 +08:00
uint32_t class;
2005-05-01 02:24:13 +08:00
uint16_t voice;
uint8_t inqmode;
uint16_t pageto;
2002-03-09 05:12:35 +08:00
uint16_t pkt_type;
uint16_t link_mode;
uint16_t link_policy;
uint8_t scan;
2007-06-07 18:14:58 +08:00
uint8_t mode;
2007-04-26 02:59:55 +08:00
uint32_t discovto;
2004-02-09 18:08:18 +08:00
};
extern struct device_opts default_device;
struct device_list {
char *ref; /* HCI device or Bluetooth address */
struct device_list *next;
struct device_opts opts;
};
2002-03-09 05:12:35 +08:00
struct hcid_opts {
2006-04-25 23:27:08 +08:00
char host_name[40];
int auto_init;
int offmode;
2008-08-06 04:18:20 +08:00
char deviceid[15];
int sock;
2002-03-09 05:12:35 +08:00
};
extern struct hcid_opts hcid;
void hci_req_queue_remove(int dev_id, bdaddr_t *dba);
#define HCID_OFFMODE_DEVDOWN 0
#define HCID_OFFMODE_NOSCAN 1
2007-06-07 18:14:58 +08:00
uint8_t get_startup_scan(int hdev);
uint8_t get_startup_mode(int hdev);
2006-04-20 00:39:48 +08:00
int get_discoverable_timeout(int dev_id);
2002-03-09 05:12:35 +08:00
void start_security_manager(int hdev);
void stop_security_manager(int hdev);
2004-02-18 02:04:03 +08:00
void set_pin_length(bdaddr_t *sba, int length);
gboolean plugin_init(GKeyFile *config);
2008-03-12 03:58:56 +08:00
void plugin_cleanup(void);
2008-08-28 04:13:41 +08:00
2008-03-13 03:21:33 +08:00
void __probe_servers(const char *adapter);
void __remove_servers(const char *adapter);