Files
scylladb/tests/tcp_test.cc
Gleb Natapov 7a92efe8d1 core: add local engine accessor function
Do not use thread local engine variable directly, but use accessor
instead.
2015-01-27 14:46:49 +02:00

54 lines
1.5 KiB
C++

/*
* Copyright (C) 2014 Cloudius Systems, Ltd.
*/
#include "net/ip.hh"
#include "net/virtio.hh"
#include "net/tcp.hh"
using namespace net;
struct tcp_test {
ipv4& inet;
using tcp = net::tcp<ipv4_traits>;
tcp::listener _listener;
struct connection {
tcp::connection tcp_conn;
explicit connection(tcp::connection tc) : tcp_conn(std::move(tc)) {}
void run() {
tcp_conn.wait_for_data().then([this] {
auto p = tcp_conn.read();
if (!p.len()) {
tcp_conn.close_write();
return;
}
print("read %d bytes\n", p.len());
tcp_conn.send(std::move(p));
run();
});
}
};
tcp_test(ipv4& inet) : inet(inet), _listener(inet.get_tcp().listen(10000)) {}
void run() {
_listener.accept().then([this] (tcp::connection conn) {
(new connection(std::move(conn)))->run();
run();
});
}
};
int main(int ac, char** av) {
boost::program_options::variables_map opts;
opts.insert(std::make_pair("tap-device", boost::program_options::variable_value(std::string("tap0"), false)));
auto vnet = create_virtio_net_device(opts);
interface netif(std::move(vnet));
ipv4 inet(&netif);
inet.set_host_address(ipv4_address("192.168.122.2"));
tcp_test tt(inet);
engine().when_started().then([&tt] { tt.run(); });
engine().run();
}