aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--driver/wintun.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index 64ffb6e..59b8f07 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
# [Wintun Network Adapter](https://www.wintun.net/)
### TUN Device Driver for Windows
-This is a layer 3 TUN driver for Windows 7, 8, 8.1, and 10. Originally created for [WireGuard](https://www.wireguard.com/), it is intended to be useful to a wide variety of projects that require layer 3 tunneling devices with implementations primarily in userspace.
+This is a layer 3 TUN driver for Windows 7, 8, 8.1, 10, and 11. Originally created for [WireGuard](https://www.wireguard.com/), it is intended to be useful to a wide variety of projects that require layer 3 tunneling devices with implementations primarily in userspace.
## Installation
diff --git a/driver/wintun.c b/driver/wintun.c
index f3eea05..ad4b16b 100644
--- a/driver/wintun.c
+++ b/driver/wintun.c
@@ -49,7 +49,7 @@
((((ULONG)(x)&0x000000ff) << 24) | (((ULONG)(x)&0x0000ff00) << 8) | (((ULONG)(x)&0x00ff0000) >> 8) | \
(((ULONG)(x)&0xff000000) >> 24))
#else
-# error "Unable to determine endianess"
+# error "Unable to determine endianness"
#endif
#define TUN_MEMORY_TAG HTONL('wtun')
@@ -107,7 +107,7 @@ typedef struct _TUN_REGISTER_RINGS_32
/* Size of the ring */
ULONG RingSize;
- /* 32-bit addres of client allocated ring */
+ /* 32-bit address of client allocated ring */
ULONG Ring;
/* On send: An event created by the client the Wintun signals after it moves the Tail member of the send ring.