aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/http/http_connection.cpp
blob: 3c294f13911906024f5872e7695a529ade59ef6a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "http_connection.h"

namespace vbench {

HttpConnection::HttpConnection(CryptoEngine &crypto, const ServerSpec &s)
    : _server(s),
      _socket(crypto, s.host, s.port),
      _lastUsed(-1000.0)
{
}

bool
HttpConnection::mayReuse(double now) const
{
    return (((now - _lastUsed) < 1.0) &&
            !_socket.eof() &&
            !_socket.tainted());
}

} // namespace vbench