blob: 90912b612c44dbd7a46758b93dfba8f238f3b90b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Copyright (C) 2015-2017 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */
#ifndef WGCONFIG_H
#define WGCONFIG_H
#include <linux/compiler.h>
struct wireguard_device;
int config_get_device(struct wireguard_device *wg, void __user *udevice);
int config_set_device(struct wireguard_device *wg, void __user *udevice);
#endif
|