You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/dht/kademlia.hpp

33 lines
618 B
C++

#ifndef LLARP_DHT_KADEMLIA_HPP
#define LLARP_DHT_KADEMLIA_HPP
#include <dht/key.hpp>
#include <router_contact.hpp>
namespace llarp
{
namespace dht
{
struct XorMetric
{
const Key_t us;
XorMetric(const Key_t& ourKey) : us(ourKey)
{}
bool
operator()(const Key_t& left, const Key_t& right) const
{
return (us ^ left) < (us ^ right);
}
bool
operator()(const RouterContact& left, const RouterContact& right) const
{
return (left.pubkey ^ us) < (right.pubkey ^ us);
}
};
} // namespace dht
} // namespace llarp
#endif