2018-05-26 18:31:45 +00:00
|
|
|
#ifndef LLARP_LINK_ENCODER_HPP
|
|
|
|
#define LLARP_LINK_ENCODER_HPP
|
|
|
|
|
2018-12-12 02:52:51 +00:00
|
|
|
#include <bencode.h>
|
|
|
|
#include <buffer.h>
|
2018-12-12 01:55:30 +00:00
|
|
|
#include <router_contact.hpp>
|
2018-05-26 18:31:45 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
/// encode Link Introduce Message onto a buffer
|
|
|
|
/// if router is nullptr then the LIM's r member is omitted.
|
|
|
|
bool
|
2018-09-04 12:41:25 +00:00
|
|
|
EncodeLIM(llarp_buffer_t* buff, const RouterContact* router,
|
|
|
|
const KeyExchangeNonce& n);
|
2018-07-09 03:08:41 +00:00
|
|
|
} // namespace llarp
|
2018-05-26 18:31:45 +00:00
|
|
|
|
|
|
|
#endif
|