mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
#ifndef LLARP_SERVICE_ENDPOINT_UTIL_HPP
|
|
#define LLARP_SERVICE_ENDPOINT_UTIL_HPP
|
|
|
|
#include <service/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);
|
|
|
|
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);
|
|
|
|
static bool
|
|
GetConvoTagsForService(const ConvoMap& sessions, const Address& addr,
|
|
std::set< ConvoTag >& tags);
|
|
};
|
|
} // namespace service
|
|
|
|
} // namespace llarp
|
|
|
|
#endif
|