mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-17 21:26:13 -07:00
Add a "null" bluetooth HCI and a header file for bluetooth.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5342 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
c0d82995d8
commit
1ae26a18a3
7 changed files with 301 additions and 4 deletions
14
net.h
14
net.h
|
|
@ -48,6 +48,20 @@ struct NICInfo {
|
|||
extern int nb_nics;
|
||||
extern NICInfo nd_table[MAX_NICS];
|
||||
|
||||
/* BT HCI info */
|
||||
|
||||
struct HCIInfo {
|
||||
int (*bdaddr_set)(struct HCIInfo *hci, const uint8_t *bd_addr);
|
||||
void (*cmd_send)(struct HCIInfo *hci, const uint8_t *data, int len);
|
||||
void (*sco_send)(struct HCIInfo *hci, const uint8_t *data, int len);
|
||||
void (*acl_send)(struct HCIInfo *hci, const uint8_t *data, int len);
|
||||
void *opaque;
|
||||
void (*evt_recv)(void *opaque, const uint8_t *data, int len);
|
||||
void (*acl_recv)(void *opaque, const uint8_t *data, int len);
|
||||
};
|
||||
|
||||
struct HCIInfo *qemu_next_hci(void);
|
||||
|
||||
/* checksumming functions (net-checksum.c) */
|
||||
uint32_t net_checksum_add(int len, uint8_t *buf);
|
||||
uint16_t net_checksum_finish(uint32_t sum);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue