mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-22 17:40:34 +00:00
Supported: - basic virtio ring pump - basic virtio-net driver (most features missing) - vhost interface (running as a privileged user process, not guest)
15 lines
251 B
C++
15 lines
251 B
C++
/*
|
|
* Copyright (C) 2014 Cloudius Systems, Ltd.
|
|
*/
|
|
|
|
#ifndef VIRTIO_HH_
|
|
#define VIRTIO_HH_
|
|
|
|
#include <memory>
|
|
#include "net.hh"
|
|
#include "sstring.hh"
|
|
|
|
std::unique_ptr<net::device> create_virtio_net_device(sstring tap_device);
|
|
|
|
#endif /* VIRTIO_HH_ */
|