diff options
author | Gustavo F. Padovan <padovan@profusion.mobi> | 2010-05-01 16:15:40 -0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2010-05-10 09:28:49 +0200 |
commit | 14b5aa71ec506f4e38ca6a1dc02ecd668ecfd902 (patch) | |
tree | afd8fc766f81d1c436433ca010eb12a606538b47 /include | |
parent | 855666cccc939d392316de17512e17a08b2fa05a (diff) | |
download | linux-3.10-14b5aa71ec506f4e38ca6a1dc02ecd668ecfd902.tar.gz linux-3.10-14b5aa71ec506f4e38ca6a1dc02ecd668ecfd902.tar.bz2 linux-3.10-14b5aa71ec506f4e38ca6a1dc02ecd668ecfd902.zip |
Bluetooth: Add sockopt configuration for txWindow on L2CAP
Now we can set/get Transmission Window size via sockopt.
Signed-off-by: Gustavo F. Padovan <padovan@profusion.mobi>
Reviewed-by: João Paulo Rechi Vita <jprvita@profusion.mobi>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/bluetooth/l2cap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h index 0f4e4234c5f..07ae4ccfffb 100644 --- a/include/net/bluetooth/l2cap.h +++ b/include/net/bluetooth/l2cap.h @@ -56,6 +56,7 @@ struct l2cap_options { __u16 flush_to; __u8 mode; __u8 fcs; + __u16 txwin_size; }; #define L2CAP_CONNINFO 0x02 @@ -339,6 +340,7 @@ struct l2cap_pinfo { __u8 ident; + __u8 tx_win; __u8 remote_tx_win; __u8 remote_max_tx; __u16 retrans_timeout; |