remove unused timer

This commit is contained in:
orignal 2019-03-17 21:37:42 -04:00
parent aa4bddd6ec
commit fc84d6c4b7
2 changed files with 1 additions and 3 deletions

View file

@ -798,8 +798,7 @@ namespace http {
}
HTTPConnection::HTTPConnection (std::string hostname, std::shared_ptr<boost::asio::ip::tcp::socket> socket):
m_Socket (socket), m_Timer (socket->get_io_service ()), m_BufferLen (0),
expected_host(hostname)
m_Socket (socket), m_BufferLen (0), expected_host(hostname)
{
/* cache options */
i2p::config::GetOption("http.auth", needAuth);