8 typedef ssize_t (IOReadvHandler
)(void *, const struct iovec
*, int);
10 typedef struct VLANClientState VLANClientState
;
12 typedef void (SetOffload
)(VLANClientState
*, int, int, int, int);
14 struct VLANClientState
{
15 IOReadHandler
*fd_read
;
16 IOReadvHandler
*fd_readv
;
17 /* Packets may still be sent if this returns zero. It's used to
18 rate-limit the slirp code. */
19 IOCanRWHandler
*fd_can_read
;
20 SetOffload
*set_offload
;
22 struct VLANClientState
*next
;
23 struct VLANState
*vlan
;
29 VLANClientState
*first_client
;
30 struct VLANState
*next
;
31 unsigned int nb_guest_devs
, nb_host_devs
;
34 VLANState
*qemu_find_vlan(int id
);
35 VLANClientState
*qemu_new_vlan_client(VLANState
*vlan
,
36 IOReadHandler
*fd_read
,
37 IOCanRWHandler
*fd_can_read
,
39 void qemu_del_vlan_client(VLANClientState
*vc
);
40 int qemu_can_send_packet(VLANClientState
*vc
);
41 int qemu_send_packet(VLANClientState
*vc
, const uint8_t *buf
, int size
);
42 ssize_t
qemu_sendv_packet(VLANClientState
*vc
, const struct iovec
*iov
,
44 void qemu_handler_true(void *opaque
);
46 void do_info_network(void);
48 int tap_has_vnet_hdr(void *opaque
);
49 void tap_using_vnet_hdr(void *opaque
, int using_vnet_hdr
);
51 int net_client_init(const char *device
, const char *opts
);
52 void net_client_uninit(NICInfo
*nd
);
67 extern NICInfo nd_table
[MAX_NICS
];
72 int (*bdaddr_set
)(struct HCIInfo
*hci
, const uint8_t *bd_addr
);
73 void (*cmd_send
)(struct HCIInfo
*hci
, const uint8_t *data
, int len
);
74 void (*sco_send
)(struct HCIInfo
*hci
, const uint8_t *data
, int len
);
75 void (*acl_send
)(struct HCIInfo
*hci
, const uint8_t *data
, int len
);
77 void (*evt_recv
)(void *opaque
, const uint8_t *data
, int len
);
78 void (*acl_recv
)(void *opaque
, const uint8_t *data
, int len
);
81 struct HCIInfo
*qemu_next_hci(void);
83 /* checksumming functions (net-checksum.c) */
84 uint32_t net_checksum_add(int len
, uint8_t *buf
);
85 uint16_t net_checksum_finish(uint32_t sum
);
86 uint16_t net_checksum_tcpudp(uint16_t length
, uint16_t proto
,
87 uint8_t *addrs
, uint8_t *buf
);
88 void net_checksum_calculate(uint8_t *data
, int length
);
91 int net_client_init(const char *device
, const char *p
);
92 int net_client_parse(const char *str
);
93 void net_slirp_smb(const char *exported_dir
);
94 void net_slirp_redir(const char *redir_str
);
95 void net_cleanup(void);
96 int slirp_is_inited(void);
97 void net_client_check(void);