mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
11 lines
178 B
C++
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
|