lokinet/include/llarp/exit_info.h

21 lines
252 B
C
Raw Normal View History

2018-01-25 16:24:33 +00:00
#ifndef LLARP_XI_H
#define LLARP_XI_H
#include <llarp/net.h>
2018-01-08 13:49:05 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2018-01-25 16:24:33 +00:00
struct llarp_exit_info
2018-01-08 13:49:05 +00:00
{
in6_addr address;
in6_addr netmask;
};
2018-01-25 16:24:33 +00:00
struct llarp_exit_info_list;
2018-01-08 13:49:05 +00:00
#ifdef __cplusplus
}
#endif
#endif