diff options
author | Thomas Huth <thuth@redhat.com> | 2019-12-05 11:41:09 +0100 |
---|---|---|
committer | Dr. David Alan Gilbert <dgilbert@redhat.com> | 2020-03-09 18:44:04 +0000 |
commit | b4983c570c7a5848c9df519cd9e056bea3177fe2 (patch) | |
tree | dfe3d5bd7e225addb1f61df55e8c24c3e8ca94d1 /net/hub.c | |
parent | 89802d5ae72817fdbaeab6d0b5b3af4765f75d4d (diff) |
net: Remove deprecated [hub_id name] tuple of 'hostfwd_add' / 'hostfwd_remove'
It's been deprecated since QEMU v3.1.0. Time to finally remove it now.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20191205104109.18680-1-thuth@redhat.com>
Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Reworked Thomas's deprecated.texi to the rst
Diffstat (limited to 'net/hub.c')
-rw-r--r-- | net/hub.c | 23 |
1 files changed, 0 insertions, 23 deletions
@@ -194,29 +194,6 @@ NetClientState *net_hub_add_port(int hub_id, const char *name, } /** - * Find a specific client on a hub - */ -NetClientState *net_hub_find_client_by_name(int hub_id, const char *name) -{ - NetHub *hub; - NetHubPort *port; - NetClientState *peer; - - QLIST_FOREACH(hub, &hubs, next) { - if (hub->id == hub_id) { - QLIST_FOREACH(port, &hub->ports, next) { - peer = port->nc.peer; - - if (peer && strcmp(peer->name, name) == 0) { - return peer; - } - } - } - } - return NULL; -} - -/** * Find a available port on a hub; otherwise create one new port */ NetClientState *net_hub_port_find(int hub_id) |