diff options
Diffstat (limited to 'net.h')
| -rw-r--r-- | net.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net.h b/net.h index 904519a354..b89d1650a0 100644 --- a/net.h +++ b/net.h @@ -33,6 +33,7 @@ struct VLANState { VLANState *qemu_find_vlan(int id); VLANClientState *qemu_new_vlan_client(VLANState *vlan, const char *model, + const char *name, IOReadHandler *fd_read, IOCanRWHandler *fd_can_read, void *opaque); @@ -53,6 +54,7 @@ void do_info_network(void); struct NICInfo { uint8_t macaddr[6]; const char *model; + const char *name; VLANState *vlan; }; |