Skip to content

Commit

Permalink
bluetooth: The endinness of LL_VERSION_IND Subversion field should be…
Browse files Browse the repository at this point in the history
… little-endian. (#4662)

Co-authored-by: Xeno Kovah <xeno@ost.fyi>
  • Loading branch information
XenoKovah and Xeno Kovah authored Mar 5, 2025
1 parent bff1ea0 commit 20a3468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scapy/layers/bluetooth4LE.py
Original file line number Diff line number Diff line change
Expand Up @@ -541,7 +541,7 @@ class LL_VERSION_IND(Packet):
fields_desc = [
ByteEnumField("version", 8, BTLE_Versions),
LEShortEnumField("company", 0, BTLE_Corp_IDs),
XShortField("subversion", 0)
XLEShortField("subversion", 0)
]


Expand Down

0 comments on commit 20a3468

Please sign in to comment.