| typedef struct VLANClientState VLANClientState; |
| /* Packets may still be sent if this returns zero. It's used to |
| rate-limit the slirp code. */ |
| IOCanRWHandler *fd_can_read; |
| struct VLANClientState *next; |
| VLANClientState *first_client; |
| unsigned int nb_guest_devs, nb_host_devs; |
| VLANState *qemu_find_vlan(int id); |
| VLANClientState *qemu_new_vlan_client(VLANState *vlan, |
| IOCanRWHandler *fd_can_read, |
| int qemu_can_send_packet(VLANClientState *vc); |
| void qemu_send_packet(VLANClientState *vc, const uint8_t *buf, int size); |
| void qemu_handler_true(void *opaque); |
| void do_info_network(void); |
| extern NICInfo nd_table[MAX_NICS]; |