diff options
| author | Max Krasnyansky <maxk@qualcomm.com> | 2002-03-26 17:59:19 +0000 | 
|---|---|---|
| committer | Max Krasnyansky <maxk@qualcomm.com> | 2002-03-26 17:59:19 +0000 | 
| commit | 1247cae735e039a593f42ce9867f8cf8e68effee (patch) | |
| tree | 254a343a8a49a3a6bd37b14d68a897ef113792c1 | |
| parent | 87f8b3bc7c1967cef913de6b23bbdebb8f98d19e (diff) | |
New ioctls. Minor cleanups.
| -rw-r--r-- | include/hci.h | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/include/hci.h b/include/hci.h index a9b23ffd..ef07bc06 100644 --- a/include/hci.h +++ b/include/hci.h @@ -86,6 +86,8 @@ enum {  #define HCISETPTYPE     _IOW('H', 224, int)  #define HCISETLINKPOL   _IOW('H', 225, int)  #define HCISETLINKMODE  _IOW('H', 226, int) +#define HCISETACLMTU    _IOW('H', 227, int) +#define HCISETSCOMTU    _IOW('H', 228, int)  #define HCIINQUIRY      _IOR('H', 240, int) @@ -723,11 +725,11 @@ struct hci_dev_info {  	uint32_t link_mode;  	uint16_t acl_mtu; -	uint16_t acl_max; +	uint16_t acl_pkts;  	uint16_t sco_mtu; -	uint16_t sco_max; +	uint16_t sco_pkts; -	struct hci_dev_stats stat; +	struct   hci_dev_stats stat;  };  struct hci_conn_info { | 
