blob: ee8a83b7adca2cb82fce59727d3aba81b9f7b4bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// +build !android
/* SPDX-License-Identifier: MIT
*
* Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
*/
package main
const DoNotUseThisProgramOnLinux = UseTheKernelModuleInstead
// --------------------------------------------------------
// Do not use this on Linux. Instead use the kernel module.
// See wireguard.com/install for more information.
// --------------------------------------------------------
|