1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/llarp/address_info.hpp
2018-06-14 10:26:03 -04:00

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