Fabcoin Core
0.16.2
P2P Digital Currency
|
#include <set>
#include <chrono>
#include <thread>
#include <mutex>
#include <memory>
#include <boost/algorithm/string.hpp>
#include <libdevcore/Common.h>
#include <libdevcore/Assertions.h>
#include <libdevcore/CommonIO.h>
#include <libdevcore/Exceptions.h>
#include <libdevcore/FileSystem.h>
#include "Session.h"
#include "Common.h"
#include "Capability.h"
#include "UPnP.h"
#include "RLPxHandshake.h"
#include "Host.h"
Go to the source code of this file.
Variables | |
std::chrono::seconds const | c_keepAliveInterval = std::chrono::seconds(30) |
Interval at which Host::run will call keepAlivePeers to ping peers. More... | |
std::chrono::milliseconds const | c_keepAliveTimeOut = std::chrono::milliseconds(1000) |
Disconnect timeout after failure to respond to keepAlivePeers ping. More... | |
Definition in file Host.cpp.
std::chrono::seconds const c_keepAliveInterval = std::chrono::seconds(30) |