diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2004-05-08 19:52:55 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2004-05-08 19:52:55 +0000 |
commit | c7b26f3e5d03e1d54dfb945e5ca0c041da524348 (patch) | |
tree | 195425d315e13749bf3c95bdb132abc3d9c0d542 | |
parent | 55543cd15f83edbc560f45bd23adae86c511d7ac (diff) |
Add BDADDR_ALL constant
-rw-r--r-- | include/bluetooth.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/bluetooth.h b/include/bluetooth.h index 3dc4b245..412ccf61 100644 --- a/include/bluetooth.h +++ b/include/bluetooth.h @@ -105,6 +105,7 @@ typedef struct { } __attribute__((packed)) bdaddr_t; #define BDADDR_ANY (&(bdaddr_t) {{0, 0, 0, 0, 0, 0}}) +#define BDADDR_ALL (&(bdaddr_t) {{0xff, 0xff, 0xff, 0xff, 0xff, 0xff}}) #define BDADDR_LOCAL (&(bdaddr_t) {{0, 0, 0, 0xff, 0xff, 0xff}}) /* Copy, swap, convert BD Address */ |