1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/service/endpoint_util.hpp

61 lines
1.5 KiB
C++
Raw Normal View History

#pragma once
#include "endpoint_types.hpp"
namespace llarp
{
namespace service
{
struct EndpointUtil
{
static void
ExpireSNodeSessions(llarp_time_t now, SNodeSessions& sessions);
static void
ExpirePendingTx(llarp_time_t now, PendingLookups& lookups);
static void
ExpirePendingRouterLookups(llarp_time_t now, PendingRouters& routers);
static void
DeregisterDeadSessions(llarp_time_t now, Sessions& sessions);
static void
TickRemoteSessions(
llarp_time_t now, Sessions& remoteSessions, Sessions& deadSessions, ConvoMap& sessions);
static void
ExpireConvoSessions(llarp_time_t now, ConvoMap& sessions);
static void
StopRemoteSessions(Sessions& remoteSessions);
static void
StopSnodeSessions(SNodeSessions& sessions);
static bool
HasPathToService(const Address& addr, const Sessions& remoteSessions);
2019-05-07 10:29:47 +02:00
static bool
GetConvoTagsForService(
const ConvoMap& sessions, const Address& addr, std::set<ConvoTag>& tags);
};
template <typename Endpoint_t>
2020-02-12 17:40:48 +01:00
static path::Path::UniqueEndpointSet_t
GetManyPathsWithUniqueEndpoints(Endpoint_t* ep, size_t N, size_t tries = 10)
{
path::Path::UniqueEndpointSet_t paths;
do
{
--tries;
const auto path = ep->PickRandomEstablishedPath();
if (path and path->IsReady())
paths.emplace(path);
} while (tries > 0 and paths.size() < N);
2020-02-12 17:40:48 +01:00
return paths;
}
} // namespace service
} // namespace llarp