diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2014-03-24 15:54:11 +0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2014-03-24 07:51:56 -0700 |
commit | edca792c036f48b15ee4d70045fb6722e8797281 (patch) | |
tree | d97be82e157fde5deeb2270052df44d7b0d60ab6 /net/bluetooth/smp.h | |
parent | 4eb65e667ba7070e4798448f5ab8dbbaa4505db0 (diff) | |
download | blackbird-op-linux-edca792c036f48b15ee4d70045fb6722e8797281.tar.gz blackbird-op-linux-edca792c036f48b15ee4d70045fb6722e8797281.zip |
Bluetooth: Add SMP flag to track which side is the initiator
For remotely initiated just-works pairings we want to show the user a
confirmation dialog for the pairing. However, we can only know which
side was the initiator by tracking which side sends the first Security
Request or Pairing Request PDU. This patch adds a new SMP flag to
indicate whether our side was the initiator for the pairing.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/smp.h')
-rw-r--r-- | net/bluetooth/smp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/bluetooth/smp.h b/net/bluetooth/smp.h index b6913471815a..0d536b8b3f9a 100644 --- a/net/bluetooth/smp.h +++ b/net/bluetooth/smp.h @@ -120,6 +120,7 @@ struct smp_cmd_security_req { #define SMP_FLAG_MITM_AUTH 3 #define SMP_FLAG_LTK_ENCRYPT 4 #define SMP_FLAG_COMPLETE 5 +#define SMP_FLAG_INITIATOR 6 #define SMP_REENCRYPT_TIMEOUT msecs_to_jiffies(500) |