mirror of
				https://github.com/ton-blockchain/ton
				synced 2025-03-09 15:40:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			50 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-2020 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
 |