diff options
author | 2021-03-17 17:43:55 -0600 | |
---|---|---|
committer | 2021-03-18 09:00:52 -0600 | |
commit | 3874141edd2f77e13ee78371798db225b35b7c7e (patch) | |
tree | 4dcd225bf1ceb4973264d8c01e3e285c503d7f2d /src/wg_cookie.c | |
parent | if_wg: use our own taskqgroup (diff) | |
download | wireguard-freebsd-3874141edd2f77e13ee78371798db225b35b7c7e.tar.xz wireguard-freebsd-3874141edd2f77e13ee78371798db225b35b7c7e.zip |
compat: backport to FreeBSD 12.2
This should allow us to get more testing coverage earlier.
This port here is also a bit janky. I really don't like the taskqgroup
business, having to copy and paste those structs. And this isn't well
tested, either. But, it's a start.
This distinguishes between compat.h and support.h, though both header
files are intended to operate in more or less the same way. It's
important to keep some discipline between things that we're backporting
and things that aren't _yet_ upstream or are shims for OpenBSD.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/wg_cookie.c')
-rw-r--r-- | src/wg_cookie.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wg_cookie.c b/src/wg_cookie.c index bf0ce37..ab35ad4 100644 --- a/src/wg_cookie.c +++ b/src/wg_cookie.c @@ -7,6 +7,7 @@ #include <sys/types.h> #include <sys/systm.h> #include <sys/param.h> +#include <sys/lock.h> #include <sys/rwlock.h> #include <sys/malloc.h> /* Because systm doesn't include M_NOWAIT, M_DEVBUF */ #include <sys/socket.h> |