2019-09-20 18:21:54 +00:00
|
|
|
// Copyright 2019 Intel Corporation. All Rights Reserved.
|
|
|
|
//
|
|
|
|
// Portions Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
|
|
//
|
|
|
|
// Portions Copyright 2017 The Chromium OS Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: (Apache-2.0 AND BSD-3-Clause)
|
|
|
|
|
|
|
|
#[macro_use(crate_version, crate_authors)]
|
|
|
|
extern crate clap;
|
2020-01-20 16:10:21 +00:00
|
|
|
extern crate vhost_user_net;
|
2019-09-20 18:21:54 +00:00
|
|
|
|
|
|
|
use clap::{App, Arg};
|
2020-01-21 15:16:38 +00:00
|
|
|
use vhost_user_net::start_net_backend;
|
2019-09-20 18:21:54 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let cmd_arguments = App::new("vhost-user-net backend")
|
|
|
|
.version(crate_version!())
|
|
|
|
.author(crate_authors!())
|
|
|
|
.about("Launch a vhost-user-net backend.")
|
|
|
|
.arg(
|
2020-01-20 14:28:06 +00:00
|
|
|
Arg::with_name("net-backend")
|
|
|
|
.long("net-backend")
|
2020-05-08 15:11:00 +00:00
|
|
|
.help(vhost_user_net::SYNTAX)
|
2019-09-20 18:21:54 +00:00
|
|
|
.takes_value(true)
|
|
|
|
.min_values(1),
|
|
|
|
)
|
|
|
|
.get_matches();
|
|
|
|
|
2020-01-21 15:16:38 +00:00
|
|
|
let backend_command = cmd_arguments.value_of("net-backend").unwrap();
|
|
|
|
start_net_backend(backend_command);
|
2019-09-20 18:21:54 +00:00
|
|
|
}
|