diff options
author | Max Krasnyansky <maxk@qualcomm.com> | 2002-06-27 17:30:13 +0000 |
---|---|---|
committer | Max Krasnyansky <maxk@qualcomm.com> | 2002-06-27 17:30:13 +0000 |
commit | 23ee7253eaee8524cdad88c0a796a630ceebac66 (patch) | |
tree | 358ff047ac2041449be3220302b64c1c66c4348e /include | |
parent | 2377f938f56bc623ac6e0ad2e68862a0566dd7de (diff) |
Fix broadcast flags.
Diffstat (limited to 'include')
-rw-r--r-- | include/hci.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/hci.h b/include/hci.h index 8c898d42..d36a43eb 100644 --- a/include/hci.h +++ b/include/hci.h @@ -122,10 +122,10 @@ enum { #define ACL_PTYPE_MASK (~SCO_PTYPE_MASK) /* ACL flags */ -#define ACL_CONT 0x0001 -#define ACL_START 0x0002 -#define ACL_ACTIVE_BCAST 0x0010 -#define ACL_PICO_BCAST 0x0020 +#define ACL_CONT 0x01 +#define ACL_START 0x02 +#define ACL_ACTIVE_BCAST 0x04 +#define ACL_PICO_BCAST 0x08 /* Baseband links */ #define SCO_LINK 0x00 |