Files
scylladb/net/stack.hh
Avi Kivity 5630f636cd net: add protcol stack adapter for native stack
This defines adapter classes for converting from the tcp<> class to the
abstractions that applications use.

Still very inefficient due to impedance mismatch between the data types used.
2014-09-10 10:42:21 +03:00

18 lines
230 B
C++

/*
* Copyright (C) 2014 Cloudius Systems, Ltd.
*/
#ifndef STACK_HH_
#define STACK_HH_
#include "core/reactor.hh"
namespace net {
std::unique_ptr<networking_stack>
create_native_networking_stack();
}
#endif /* STACK_HH_ */