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/api/create_session.cpp

17 lines
349 B
C++

6 years ago
#include <list>
#include <llarp/api/messages.hpp>
#include <llarp/encrypted.hpp>
#include <string>
namespace llarp
{
namespace api
{
bool
CreateSessionMessage::DecodeParams(llarp_buffer_t *buf)
{
std::list< llarp::Encrypted > params;
return BEncodeReadList(params, buf);
}
} // namespace api
} // namespace llarp