From f853ac66c7b49a3a064ee838683c27fc3c9b86cc Mon Sep 17 00:00:00 2001 From: Thomas Huth Date: Wed, 13 Jan 2016 09:05:32 +0100 Subject: 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 Signed-off-by: Jason Wang --- net/slirp.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'net/slirp.c') 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,"); -- cgit v1.2.1