8 typedef ssize_t (IOReadvHandler
)(void *, const struct iovec
*, int);
10 typedef struct VLANClientState VLANClientState
;
12 struct VLANClientState
{
13 IOReadHandler
*fd_read
;
14 IOReadvHandler
*fd_readv
;
15 /* Packets may still be sent if this returns zero. It's used to
16 rate-limit the slirp code. */
17 IOCanRWHandler
*fd_can_read
;
19 struct VLANClientState
*next
;
20 struct VLANState
*vlan
;
26 VLANClientState
*first_client
;
27 struct VLANState
*next
;
28 unsigned int nb_guest_devs
, nb_host_devs
;
31 VLANState
*qemu_find_vlan(int id
);
32 VLANClientState
*qemu_new_vlan_client(VLANState
*vlan
,
33 IOReadHandler
*fd_read
,
34 IOCanRWHandler
*fd_can_read
,
36 int qemu_can_send_packet(VLANClientState
*vc
);
37 int qemu_send_packet(VLANClientState
*vc
, const uint8_t *buf
, int size
);
38 ssize_t
qemu_sendv_packet(VLANClientState
*vc
, const struct iovec
*iov
,
40 void qemu_handler_true(void *opaque
);
42 void do_info_network(void);
44 /* virtio hack for zero copy receive */
45 int hack_around_tap(void *opaque
);
47 int net_client_init(const char *str
);
48 void net_client_uninit(NICInfo
*nd
);
63 extern NICInfo nd_table
[MAX_NICS
];