Skip to content

Commit

Permalink
Merge pull request #639 from zxzxwu/sdp
Browse files Browse the repository at this point in the history
Correct SDP_ALL_ATTRIBUTES_RANGE value
  • Loading branch information
zxzxwu authored Feb 3, 2025
2 parents 7c019b5 + fdee826 commit dedc0ac
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)

# fmt: on
# pylint: enable=line-too-long
Expand Down

0 comments on commit dedc0ac

Please sign in to comment.