summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorThomas Huth2016-01-13 09:05:32 +0100
committerJason Wang2016-02-04 06:22:06 +0100
commitf853ac66c7b49a3a064ee838683c27fc3c9b86cc (patch)
tree9b1fe8fadbb25f2faec42221391213cad2309be9 /net
parentMerge remote-tracking branch 'remotes/kraxel/tags/pull-vga-20160203-1' into s... (diff)
downloadqemu-f853ac66c7b49a3a064ee838683c27fc3c9b86cc.tar.gz
qemu-f853ac66c7b49a3a064ee838683c27fc3c9b86cc.tar.xz
qemu-f853ac66c7b49a3a064ee838683c27fc3c9b86cc.zip
net/slirp: Tell the users when they are using deprecated options
We don't want to support the legacy -tftp, -bootp, -smb and -net channel options forever. So let's start telling the users that they are deprecated and what option should be used instead. Signed-off-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'net')
-rw-r--r--net/slirp.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/net/slirp.c b/net/slirp.c
index f505570adb..eac4fc2506 100644
--- a/net/slirp.c
+++ b/net/slirp.c
@@ -784,6 +784,9 @@ int net_slirp_parse_legacy(QemuOptsList *opts_list, const char *optarg, int *ret
return 0;
}
+ error_report("The '-net channel' option is deprecated. "
+ "Please use '-netdev user,guestfwd=...' instead.");
+
/* handle legacy -net channel,port:chr */
optarg += strlen("channel,");