mirror of
https://github.com/danog/ton.git
synced 2024-11-29 20:19:16 +01:00
51 lines
1.6 KiB
C++
51 lines
1.6 KiB
C++
/*
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
Copyright 2017-2019 Telegram Systems LLP
|
|
*/
|
|
#include "adnl-node.h"
|
|
|
|
namespace ton {
|
|
|
|
namespace adnl {
|
|
|
|
td::Result<AdnlNode> AdnlNode::create(const tl_object_ptr<ton_api::adnl_node> &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<ton_api::adnl_nodes> AdnlNodesList::tl() const {
|
|
std::vector<tl_object_ptr<ton_api::adnl_node>> vec;
|
|
for (auto &node : nodes_) {
|
|
vec.emplace_back(node.tl());
|
|
}
|
|
return create_tl_object<ton_api::adnl_nodes>(std::move(vec));
|
|
}
|
|
|
|
td::Result<AdnlNodesList> AdnlNodesList::create(const tl_object_ptr<ton_api::adnl_nodes> &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
|