summaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/http/http_connection.cpp
blob: b2b3ec06e3786700f29c51b2138d8dd49d8bd1d2 (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 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "http_connection.h"

namespace vbench {

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

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

} // namespace vbench