summaryrefslogtreecommitdiff
path: root/src/btd.h
diff options
context:
space:
mode:
authorSathish Narasimman <sathish.narasimman@intel.com>2022-11-22 15:42:28 +0530
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2023-03-10 13:41:06 -0800
commit7111c0039f5c14e46c6d26c60fec2091d69549c6 (patch)
tree9fdcd696d618f9c4376df47359d478a79acebd69 /src/btd.h
parentf95ffcc8b1fe67c4b0443747c08f8e9d853025cf (diff)
downloadbluez-7111c0039f5c14e46c6d26c60fec2091d69549c6.tar.gz
main.conf: Add CSIP profile configurable options
This introduces option to configure main.conf that can be used to configure co-ordinated set identification profile.
Diffstat (limited to 'src/btd.h')
-rw-r--r--src/btd.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/btd.h b/src/btd.h
index 42cffcde4..70051c71c 100644
--- a/src/btd.h
+++ b/src/btd.h
@@ -92,6 +92,13 @@ struct btd_defaults {
struct btd_le_defaults le;
};
+struct btd_csis {
+ bool encrypt;
+ uint8_t sirk[16];
+ uint8_t size;
+ uint8_t rank;
+};
+
struct btd_avdtp_opts {
uint8_t session_mode;
uint8_t stream_mode;
@@ -142,6 +149,8 @@ struct btd_opts {
enum jw_repairing_t jw_repairing;
struct btd_advmon_opts advmon;
+
+ struct btd_csis csis;
};
extern struct btd_opts btd_opts;