lokinet/llarp/service/session.hpp
Jeff Becker 95cd275cdd
liblokinet additions:
* add lokinet_add_bootstrap_rc function for adding an rc from memory
* prevent stack overflow on error closing connection in quic
* add in memory nodedb
* refactor how convotags are set as active
* add initial stubs for endpoint statistics
* refactor time stuff to be a bit cleaner
* update lnproxy script with more arguments
2021-04-19 06:59:07 -04:00

57 lines
1.2 KiB
C++

#pragma once
#include <llarp/crypto/types.hpp>
#include <llarp/path/path.hpp>
#include "info.hpp"
#include "intro.hpp"
#include <llarp/util/status.hpp>
#include <llarp/util/types.hpp>
namespace llarp
{
namespace service
{
static constexpr auto SessionLifetime = path::default_lifetime * 2;
struct Session
{
/// the intro we have
Introduction replyIntro;
SharedSecret sharedKey;
ServiceInfo remote;
/// the intro they have
Introduction intro;
/// the sequence number we are to use for the next message
uint64_t seqno = 0;
/// number of remote messages we sent to them
uint64_t messagesSend = 0;
/// number of remote messages we got from them
uint64_t messagesRecv = 0;
bool inbound = false;
bool forever = false;
Duration_t lastSend{};
Duration_t lastRecv{};
util::StatusObject
ExtractStatus() const;
/// called to indicate we recieved on this session
void
RX();
/// called to indicate we transimitted on this session
void
TX();
bool
IsExpired(llarp_time_t now, llarp_time_t lifetime = SessionLifetime) const;
};
} // namespace service
} // namespace llarp