Skip to content

Commit

Permalink
Correct SDP_ALL_ATTRIBUTES_RANGE value
Browse files Browse the repository at this point in the history
  • Loading branch information
zxzxwu committed Feb 3, 2025
1 parent 83ac70e commit c40e78a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bumble/sdp.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c40e78a

Please sign in to comment.