2018-05-26 18:31:45 +00:00
|
|
|
#ifndef LLARP_LINK_ENCODER_HPP
|
|
|
|
#define LLARP_LINK_ENCODER_HPP
|
|
|
|
|
|
|
|
#include <llarp/bencode.h>
|
|
|
|
#include <llarp/buffer.h>
|
2018-08-30 18:48:43 +00:00
|
|
|
#include <llarp/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
|