aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/uapi/freebsd/dev/if_wg/if_wg.h
blob: a4b3b138b8b2c6fcbaf1ab9eb60dba920d98081a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __IF_WG_H__
#define __IF_WG_H__

#include <net/if.h>
#include <netinet/in.h>

struct wg_data_io {
	char wgd_name[IFNAMSIZ];
	void *wgd_data;
	size_t wgd_size;
};

#define SIOCSWG _IOWR('i', 210, struct wg_data_io)
#define SIOCGWG _IOWR('i', 211, struct wg_data_io)

#endif