diff options
author | Jan Kiszka <jan.kiszka@siemens.com> | 2009-05-08 12:34:18 +0200 |
---|---|---|
committer | Mark McLoughlin <markmc@redhat.com> | 2009-06-09 11:38:49 +0100 |
commit | 10ae5a7a98f7c1d901fbb6658324e9c4c4fec8cf (patch) | |
tree | 7bc3ce8db3cd1efcf8de25c5cc150a5095cc3d46 /net.h | |
parent | c8decae2e135d2331268619aa07701c31595b6c9 (diff) | |
download | qemu-10ae5a7a98f7c1d901fbb6658324e9c4c4fec8cf.tar.gz qemu-10ae5a7a98f7c1d901fbb6658324e9c4c4fec8cf.tar.bz2 qemu-10ae5a7a98f7c1d901fbb6658324e9c4c4fec8cf.zip |
net: Improve parameter error reporting
As host network devices can also be instantiated via the monitor, errors
should then be reported to the related monitor instead of stderr. This
requires larger refactoring, so this patch starts small with introducing
a helper to catch both cases and convert net_client_init as well as
net_slirp_redir.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Signed-off-by: Mark McLoughlin <markmc@redhat.com>
Diffstat (limited to 'net.h')
-rw-r--r-- | net.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -108,7 +108,7 @@ uint16_t net_checksum_tcpudp(uint16_t length, uint16_t proto, void net_checksum_calculate(uint8_t *data, int length); /* from net.c */ -int net_client_init(const char *device, const char *p); +int net_client_init(Monitor *mon, const char *device, const char *p); void net_client_uninit(NICInfo *nd); int net_client_parse(const char *str); void net_slirp_smb(const char *exported_dir); |