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/address_info.hpp

11 lines
178 B
C++

#ifndef LLARP_ADDRESS_INFO_HPP
#define LLARP_ADDRESS_INFO_HPP
#include <llarp/address_info.h>
#include <vector>
struct llarp_ai_list
{
std::vector< llarp_ai > list;
};
#endif