diff options
| author | Nick Pelly <npelly@google.com> | 2009-12-09 00:15:41 -0800 | 
|---|---|---|
| committer | Arve Hjønnevåg <arve@android.com> | 2013-07-01 13:40:28 -0700 | 
| commit | efae1f20bc2d37ff96cce721e9ea5e98295d75fa (patch) | |
| tree | 75a872e4f99b9289e797421513d6bf9fbceed632 /include/net/bluetooth/hci.h | |
| parent | 46dc7c22d43249ad8748bf2884abc276f8b272c8 (diff) | |
| download | olio-linux-3.10-efae1f20bc2d37ff96cce721e9ea5e98295d75fa.tar.xz olio-linux-3.10-efae1f20bc2d37ff96cce721e9ea5e98295d75fa.zip  | |
Bluetooth: Add ACL MTU, available buffers and total buffers to hci_conn_info.
This provides userspace debugging tools access to ACL flow control state.
Signed-off-by: Nick Pelly <npelly@google.com>
Diffstat (limited to 'include/net/bluetooth/hci.h')
| -rw-r--r-- | include/net/bluetooth/hci.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci.h b/include/net/bluetooth/hci.h index e0512aaef4b..2d6adf33126 100644 --- a/include/net/bluetooth/hci.h +++ b/include/net/bluetooth/hci.h @@ -1628,6 +1628,9 @@ struct hci_conn_info {  	__u8     out;  	__u16    state;  	__u32    link_mode; +	__u32    mtu; +	__u32    cnt; +	__u32    pkts;  };  struct hci_dev_req {  |