My Project 3.7.1
C++ Distributed Hash Table
Loading...
Searching...
No Matches
proxy.h
1// Copyright (c) 2014-2026 Savoir-faire Linux Inc.
2// SPDX-License-Identifier: MIT
3#pragma once
4
5#include <chrono>
6
7namespace dht {
8namespace proxy {
9
10constexpr const std::chrono::hours OP_TIMEOUT {24}; // one day
11constexpr const std::chrono::hours OP_MARGIN {2}; // two hours
12
13using ListenToken = uint64_t;
14
15} // namespace proxy
16} // namespace dht