llarp/service/router_lookup_job.hpp

Namespaces

Name
llarp
[crypto.hpp]
llarp::service

Classes

Name
struct llarp::service::RouterLookupJob

Source code

#pragma once

#include <llarp/router_contact.hpp>

namespace llarp
{
  namespace service
  {
    struct Endpoint;

    struct RouterLookupJob
    {
      RouterLookupJob(Endpoint* p, RouterLookupHandler h);

      RouterLookupHandler handler;
      uint64_t txid;
      llarp_time_t started;

      bool
      IsExpired(llarp_time_t now) const
      {
        if (now < started)
          return false;
        return now - started > 30s;
      }

      void
      InformResult(std::vector<RouterContact> result)
      {
        if (handler)
          handler(result);
      }
    };
  }  // namespace service
}  // namespace llarp

Updated on 2026-01-10 at 22:49:45 +0000