mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-20 00:20:47 +00:00
14 lines
201 B
C++
14 lines
201 B
C++
#ifndef PROXY_HH_
|
|
#define PROXY_HH_
|
|
|
|
#include <memory>
|
|
#include "net.hh"
|
|
#include "packet.hh"
|
|
|
|
namespace net {
|
|
|
|
std::unique_ptr<qp> create_proxy_net_device(unsigned master_cpu, device* dev);
|
|
|
|
}
|
|
#endif
|