From c40e78a1042ec7ebf693c6aa68f59a06e6bb6c42 Mon Sep 17 00:00:00 2001 From: Josh Wu Date: Mon, 3 Feb 2025 17:22:51 +0800 Subject: [PATCH] Correct SDP_ALL_ATTRIBUTES_RANGE value --- bumble/sdp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bumble/sdp.py b/bumble/sdp.py index bafc2e49..893b5f19 100644 --- a/bumble/sdp.py +++ b/bumble/sdp.py @@ -130,7 +130,7 @@ SDP_PUBLIC_BROWSE_ROOT = core.UUID.from_16_bits(0x1002, 'PublicBrowseRoot') # To be used in searches where an attribute ID list allows a range to be specified -SDP_ALL_ATTRIBUTES_RANGE = (0x0000FFFF, 4) # Express this as tuple so we can convey the desired encoding size +SDP_ALL_ATTRIBUTES_RANGE = (0x0000, 0xFFFF) # Express this as tuple so we can convey the desired encoding size # fmt: on # pylint: enable=line-too-long