iwyu: management.h

This commit is contained in:
Hamish Coleman 2023-06-16 08:36:10 +01:00
parent 06c2e012d7
commit 796ca2cb97

View File

@ -9,9 +9,18 @@
#define MANAGEMENT_H 1
#include <n2n_typedefs.h> // For the n2n_edge_t and n2n_sn_t defs
#include <stddef.h> // for size_t
#include <stdint.h> // for uint64_t
#include <sys/types.h> // for ssize_t
#include "n2n_define.h" // for n2n_event_topic
#include "strbuf.h"
#ifdef WIN32
#include <winsock.h>
#else
#include <sys/socket.h> // for sockaddr, sockaddr_storage, socklen_t
#endif
enum n2n_mgmt_type {
N2N_MGMT_UNKNOWN = 0,
N2N_MGMT_READ = 1,