mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
vhost_user_backend: Rename start() to start_server()
The point being to identify clearly that we're running the backend as a server. This anticipates the addition of a new function for running the backend as a client. Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
This commit is contained in:
@@ -372,7 +372,7 @@ pub fn start_net_backend(backend_command: &str) {
|
||||
.set_vring_worker(Some(vring_workers.remove(0)));
|
||||
}
|
||||
|
||||
if let Err(e) = net_daemon.start(listener) {
|
||||
if let Err(e) = net_daemon.start_server(listener) {
|
||||
error!(
|
||||
"failed to start daemon for vhost-user-net with error: {:?}",
|
||||
e
|
||||
|
||||
Reference in New Issue
Block a user