diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2008-06-16 01:23:58 +0000 | 
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2008-06-16 01:23:58 +0000 | 
| commit | 1c2202809e5da072ac3cf8b832b5ae310369bad6 (patch) | |
| tree | 7b2f172ce2a421caa32643ae0f8c09ed19bcc1fc | |
| parent | 70ee40161f6faa1faa8670ca2fd7b517c4de0598 (diff) | |
Add definition for authentication requirements
| -rw-r--r-- | include/hci.h | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/include/hci.h b/include/hci.h index 6e295be3..499f1bdd 100644 --- a/include/hci.h +++ b/include/hci.h @@ -83,6 +83,7 @@ enum {  #define HCIGETDEVINFO	_IOR('H', 211, int)  #define HCIGETCONNLIST	_IOR('H', 212, int)  #define HCIGETCONNINFO	_IOR('H', 213, int) +#define HCIGETAUTHINFO	_IOR('H', 215, int)  #define HCISETRAW	_IOW('H', 220, int)  #define HCISETSCAN	_IOW('H', 221, int) @@ -1813,6 +1814,11 @@ struct hci_conn_info_req {  	struct hci_conn_info conn_info[0];  }; +struct hci_auth_info_req { +	bdaddr_t bdaddr; +	uint8_t  type; +}; +  struct hci_inquiry_req {  	uint16_t dev_id;  	uint16_t flags; | 
