-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 290990 b: refs/heads/master c: cd82e61 h: refs/heads/master v: v3
- Loading branch information
Marcel Holtmann
authored and
Johan Hedberg
committed
Feb 20, 2012
1 parent
33ddbca
commit b06c8e6
Showing
6 changed files
with
271 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 040030ef7d907107e6489b39da518bdf94136d68 | ||
refs/heads/master: cd82e61c110a36e398323e422896fcfe05879fed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
BlueZ - Bluetooth protocol stack for Linux | ||
Copyright (C) 2011-2012 Intel Corporation | ||
This program is free software; you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License version 2 as | ||
published by the Free Software Foundation; | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS | ||
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. | ||
IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY | ||
CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES | ||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, | ||
COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS | ||
SOFTWARE IS DISCLAIMED. | ||
*/ | ||
|
||
#ifndef __HCI_MON_H | ||
#define __HCI_MON_H | ||
|
||
struct hci_mon_hdr { | ||
__le16 opcode; | ||
__le16 index; | ||
__le16 len; | ||
} __packed; | ||
#define HCI_MON_HDR_SIZE 6 | ||
|
||
#define HCI_MON_NEW_INDEX 0 | ||
#define HCI_MON_DEL_INDEX 1 | ||
#define HCI_MON_COMMAND_PKT 2 | ||
#define HCI_MON_EVENT_PKT 3 | ||
#define HCI_MON_ACL_TX_PKT 4 | ||
#define HCI_MON_ACL_RX_PKT 5 | ||
#define HCI_MON_SCO_TX_PKT 6 | ||
#define HCI_MON_SCO_RX_PKT 7 | ||
|
||
struct hci_mon_new_index { | ||
__u8 type; | ||
__u8 bus; | ||
bdaddr_t bdaddr; | ||
char name[8]; | ||
} __packed; | ||
#define HCI_MON_NEW_INDEX_SIZE 16 | ||
|
||
#endif /* __HCI_MON_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters