Files
scylladb/net/tcp-stack.hh
Avi Kivity 9fbd13175b net: move mechanics of listening to a tcp connection to tcp.cc
Removes an include of tcp.hh.
2014-10-24 22:18:54 +03:00

25 lines
361 B
C++

/*
* Copyright (C) 2014 Cloudius Systems, Ltd.
*/
// tcp/network-stack integration
#ifndef NET_TCP_STACK_HH
#define NET_TCP_STACK_HH
class listen_options;
class server_socket;
namespace net {
class ipv4_traits;
template <typename InetTraits>
class tcp;
server_socket
tcpv4_listen(tcp<ipv4_traits>& tcpv4, uint16_t port, listen_options opts);
}
#endif