From 23ee7253eaee8524cdad88c0a796a630ceebac66 Mon Sep 17 00:00:00 2001 From: Max Krasnyansky Date: Thu, 27 Jun 2002 17:30:13 +0000 Subject: Fix broadcast flags. --- include/hci.h | 8 ++++---- 1 file 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 -- cgit