/*
This file is part of TON Blockchain Library.
TON Blockchain Library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
TON Blockchain Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with TON Blockchain Library. If not, see .
Copyright 2017-2019 Telegram Systems LLP
*/
#include "adnl-node.h"
namespace ton {
namespace adnl {
td::Result AdnlNode::create(const tl_object_ptr &obj) {
TRY_RESULT(id, AdnlNodeIdFull::create(obj->id_));
TRY_RESULT(addr_list, AdnlAddressList::create(std::move(obj->addr_list_)));
return AdnlNode{std::move(id), std::move(addr_list)};
}
tl_object_ptr AdnlNodesList::tl() const {
std::vector> vec;
for (auto &node : nodes_) {
vec.emplace_back(node.tl());
}
return create_tl_object(std::move(vec));
}
td::Result AdnlNodesList::create(const tl_object_ptr &nodes) {
AdnlNodesList res{};
for (auto &node : nodes->nodes_) {
TRY_RESULT(N, AdnlNode::create(node));
res.push(std::move(N));
}
return res;
}
} // namespace adnl
} // namespace ton