mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-21 17:10:35 +00:00
Virtio net options: --event-index arg (=on) Enable event_index feature (on / off) By default, --event-index is enable. To disable, e.g.: $ ./httpd --network-stack native --event-index off
16 lines
424 B
C++
16 lines
424 B
C++
/*
|
|
* Copyright (C) 2014 Cloudius Systems, Ltd.
|
|
*/
|
|
|
|
#ifndef VIRTIO_HH_
|
|
#define VIRTIO_HH_
|
|
|
|
#include <memory>
|
|
#include "net.hh"
|
|
#include "core/sstring.hh"
|
|
|
|
std::unique_ptr<net::device> create_virtio_net_device(sstring tap_device, boost::program_options::variables_map opts = boost::program_options::variables_map());
|
|
boost::program_options::options_description get_virtio_net_options_description();
|
|
|
|
#endif /* VIRTIO_HH_ */
|