From 9e117ebee13f591a7a0376f31229c715348860b0 Mon Sep 17 00:00:00 2001 From: Pauli Virtanen Date: Mon, 14 Jul 2025 19:44:49 +0300 Subject: [PATCH] lib: add BT_PKT_SEQNUM and BT_SCM_PKT_SEQNUM Socket options and CMSG identifier for ISO packet sequence numbers. --- lib/bluetooth.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/bluetooth.h b/lib/bluetooth.h index 150679d72..88a5d8b66 100644 --- a/lib/bluetooth.h +++ b/lib/bluetooth.h @@ -253,6 +253,10 @@ enum { #define BT_ISO_BASE 20 +#define BT_PKT_SEQNUM 22 + +#define BT_SCM_PKT_SEQNUM 0x05 + /* Byte order conversions */ #if __BYTE_ORDER == __LITTLE_ENDIAN #define htobs(d) (d) -- 2.47.3