aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2021-08-09 16:14:23 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2021-08-09 16:16:28 +0200
commit97c87e662d80dd76266e3a5d5d4089a55a02785a (patch)
tree5ea510217fb4c58bee08f55b9190b6e664d72e97
parentmanager: do both wgnt and wintun cleanups (diff)
downloadwireguard-windows-97c87e662d80dd76266e3a5d5d4089a55a02785a.tar.xz
wireguard-windows-97c87e662d80dd76266e3a5d5d4089a55a02785a.zip
embeddable-dll-service: mention that you need dlls in right place
Reported-by: Dmitry Smirnov <dmitry.smirnov@netprotect.com> Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r--embeddable-dll-service/README.md2
-rw-r--r--embeddable-dll-service/csharp/README.md4
2 files changed, 2 insertions, 4 deletions
diff --git a/embeddable-dll-service/README.md b/embeddable-dll-service/README.md
index 6184f00c..aeb80eba 100644
--- a/embeddable-dll-service/README.md
+++ b/embeddable-dll-service/README.md
@@ -1,6 +1,6 @@
## Embeddable WireGuard Tunnel Library
-This allows embedding WireGuard as a service inside of another application. Build `tunnel.dll` by running `./build.bat` in this folder. The first time you run it, it will invoke `..\build.bat` simply for downloading dependencies. After, you should have `amd64/tunnel.dll`, `x86/tunnel.dll`, and `arm64/tunnel.dll`.
+This allows embedding WireGuard as a service inside of another application. Build `tunnel.dll` by running `./build.bat` in this folder. The first time you run it, it will invoke `..\build.bat` simply for downloading dependencies. After, you should have `amd64/tunnel.dll`, `x86/tunnel.dll`, and `arm64/tunnel.dll`. In addition, `tunnel.dll` requires `wintun.dll`, which can be downloaded from [wintun.net](https://www.wintun.net), and `wireguard.dll`, which can be downloaded from [the wireguard-nt download server](https://download.wireguard.com/wireguard-nt/).
The basic setup to use `tunnel.dll` is:
diff --git a/embeddable-dll-service/csharp/README.md b/embeddable-dll-service/csharp/README.md
index 493dcb5d..39542f3d 100644
--- a/embeddable-dll-service/csharp/README.md
+++ b/embeddable-dll-service/csharp/README.md
@@ -4,12 +4,10 @@ This is a simple client for demo.wireguard.com, which brings up WireGuard tunnel
## Building
-The code in this repository can be built in Visual Studio 2019 by opening the .sln and pressing build. However, it requires `tunnel.dll` to be present in the run directory. That can be built by:
+The code in this repository can be built in Visual Studio 2019 by opening the .sln and pressing build. However, it requires [`tunnel.dll` and its dependencies](../README.md) to be present in the run directory. That can be built by:
```batch
> git clone https://git.zx2c4.com/wireguard-windows
> cd wireguard-windows\embeddable-dll-service
> .\build.bat
```
-
-In addition, `tunnel.dll` requires `wintun.dll`, which can be downloaded from [wintun.net](https://www.wintun.net), and `wireguard.dll`, which can be downloaded from [the wireguard-nt download server](https://download.wireguard.com/wireguard-nt/).