diff options
author | Thomas Huth <thuth@redhat.com> | 2017-12-19 16:28:54 +0100 |
---|---|---|
committer | Jason Wang <jasowang@redhat.com> | 2017-12-22 10:05:26 +0800 |
commit | 3a22ee27340aee063b442daa37ae684e9a114a91 (patch) | |
tree | 52a2b478df5b7707e4812a3f7bb3e7d74ca7b00b /net/net.c | |
parent | d9caeb09b107e91122d10ba4a08a4af2b59c69cf (diff) |
net: Remove the legacy "-net channel" parameter
It has never been documented, so hardly anybody knows about this
parameter, and it is marked as deprecated since QEMU v2.6.
Time to let it go now.
Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'net/net.c')
-rw-r--r-- | net/net.c | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -1565,13 +1565,6 @@ int net_init_clients(void) int net_client_parse(QemuOptsList *opts_list, const char *optarg) { -#if defined(CONFIG_SLIRP) - int ret; - if (net_slirp_parse_legacy(opts_list, optarg, &ret)) { - return ret; - } -#endif - if (!qemu_opts_parse_noisily(opts_list, optarg, true)) { return -1; } |