diff options
author | Andre Guedes <andre.guedes@openbossa.org> | 2012-04-24 21:02:52 -0300 |
---|---|---|
committer | Gustavo Padovan <gustavo@padovan.org> | 2012-05-09 01:40:43 -0300 |
commit | 43ef0b8b8d95c7aab7bb3778351e3591502bf355 (patch) | |
tree | a2df10759b474d26a37cc348a97233edb1cbe79a /include/net | |
parent | 57c1477c2c6b6c73ca40e4b23a80e3ecdfd9b684 (diff) | |
download | blackbird-op-linux-43ef0b8b8d95c7aab7bb3778351e3591502bf355.tar.gz blackbird-op-linux-43ef0b8b8d95c7aab7bb3778351e3591502bf355.zip |
Bluetooth: Add address type to struct sockaddr_l2
This patch adds the address type info to struct sockaddr_l2 so
user-space can inform the remote device address type required
to establish LE connections.
Soon, instead of looking the advertising cache up to discover the
address type, we'll use this address type info to establish LE
connections.
Signed-off-by: Andre Guedes <andre.guedes@openbossa.org>
Acked-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/bluetooth/l2cap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h index 52f7e6a9a237..bb4e3f66b43c 100644 --- a/include/net/bluetooth/l2cap.h +++ b/include/net/bluetooth/l2cap.h @@ -57,6 +57,7 @@ struct sockaddr_l2 { __le16 l2_psm; bdaddr_t l2_bdaddr; __le16 l2_cid; + __u8 l2_bdaddr_type; }; /* L2CAP socket options */ |