mirror of
https://github.com/rust-vmm/vhost-device.git
synced 2026-01-08 20:57:35 +00:00
I suspect the damage I've cleaned up has come from the template. Lets clean that up as well. Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
42 lines
754 B
Markdown
42 lines
754 B
Markdown
# vhost-device-template - Template for a vhost-device backend implementation
|
|
|
|
## Description
|
|
This program is a template for developers who intend to write a new vhost-device
|
|
backend.
|
|
|
|
## Synopsis
|
|
|
|
```console
|
|
vhost-device-template [OPTIONS]
|
|
```
|
|
|
|
## Options
|
|
|
|
```text
|
|
vhost-device-template
|
|
|
|
-h, --help
|
|
|
|
Print help.
|
|
|
|
-s, --socket-path=PATH
|
|
|
|
Location of vhost-user Unix domain socket. This supports a single socket /
|
|
guest.
|
|
```
|
|
|
|
## Examples
|
|
|
|
The daemon should be started first:
|
|
|
|
```console
|
|
host# vhost-device-template --socket-path=vfoo.sock
|
|
```
|
|
|
|
## License
|
|
|
|
This project is licensed under either of
|
|
|
|
- [Apache License](http://www.apache.org/licenses/LICENSE-2.0), Version 2.0
|
|
- [BSD-3-Clause License](https://opensource.org/licenses/BSD-3-Clause)
|