0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-28 19:58:53 +02:00

ircd::net: Move these temp items here.

This commit is contained in:
Jason Volk 2017-12-21 16:13:26 -07:00
parent f8d3fee8b6
commit 3d5eea0ce3
2 changed files with 9 additions and 10 deletions

View file

@ -461,6 +461,15 @@ ircd::handle_request(client &client,
std::shared_ptr<ircd::client>
ircd::add_client(std::shared_ptr<socket> s)
{
//ip::tcp::socket &sd(*s);
//sd.non_blocking(false);
//static const asio::socket_base::keep_alive keep_alive(true);
//sd.set_option(keep_alive);
//static const asio::socket_base::linger linger{true, 10};
//sd.set_option(linger);
const auto client
{
make_client(std::move(s))

View file

@ -422,16 +422,6 @@ noexcept try
sock.get(),
string(sock->remote()));
//ip::tcp::socket &sd(*sock);
//static const asio::socket_base::keep_alive keep_alive(true);
//sd.set_option(keep_alive);
//static const asio::socket_base::linger linger{true, 10};
//sd.set_option(linger);
//sd.non_blocking(false);
static const socket::handshake_type handshake_type
{
socket::handshake_type::server