diff options
| author | Mark McLoughlin <markmc@redhat.com> | 2009-10-08 19:58:25 +0100 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-15 09:32:01 -0500 |
| commit | 7f161aaea6e1f566a017f87513924d1c8bbfdc6c (patch) | |
| tree | 023f251dfbf3c9ce8bb8f7bea78bf82e8b73878f /net.h | |
| parent | d80b9fc628501aefef949e6085bdecf1432d1b9b (diff) | |
| download | focaccia-qemu-7f161aaea6e1f566a017f87513924d1c8bbfdc6c.tar.gz focaccia-qemu-7f161aaea6e1f566a017f87513924d1c8bbfdc6c.zip | |
net: add QemuOptsList arg to net_client_parse()
Patchworks-ID: 35505 Signed-off-by: Mark McLoughlin <markmc@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'net.h')
| -rw-r--r-- | net.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net.h b/net.h index 79e9b47427..404190cb86 100644 --- a/net.h +++ b/net.h @@ -136,7 +136,7 @@ extern const char *legacy_bootp_filename; int net_client_init(Monitor *mon, QemuOpts *opts); void net_client_uninit(NICInfo *nd); -int net_client_parse(const char *str); +int net_client_parse(QemuOptsList *opts_list, const char *str); int net_init_clients(void); int net_slirp_smb(const char *exported_dir); void net_slirp_hostfwd_add(Monitor *mon, const QDict *qdict); |