├── .cirrus.yml ├── COPYING ├── MISSING.md ├── README.md ├── TODO.md ├── src ├── Makefile ├── compat.h ├── crypto.c ├── crypto.h ├── if_wg.c ├── if_wg.h ├── selftest │ ├── allowedips.c │ ├── cookie.c │ └── counter.c ├── support.h ├── version.h ├── wg_cookie.c ├── wg_cookie.h ├── wg_noise.c └── wg_noise.h └── tests └── netns.sh /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/COPYING -------------------------------------------------------------------------------- /MISSING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/MISSING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/TODO.md -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/compat.h -------------------------------------------------------------------------------- /src/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/crypto.c -------------------------------------------------------------------------------- /src/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/crypto.h -------------------------------------------------------------------------------- /src/if_wg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/if_wg.c -------------------------------------------------------------------------------- /src/if_wg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/if_wg.h -------------------------------------------------------------------------------- /src/selftest/allowedips.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/selftest/allowedips.c -------------------------------------------------------------------------------- /src/selftest/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/selftest/cookie.c -------------------------------------------------------------------------------- /src/selftest/counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/selftest/counter.c -------------------------------------------------------------------------------- /src/support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/support.h -------------------------------------------------------------------------------- /src/version.h: -------------------------------------------------------------------------------- 1 | #define WIREGUARD_VERSION 20220615 2 | -------------------------------------------------------------------------------- /src/wg_cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/wg_cookie.c -------------------------------------------------------------------------------- /src/wg_cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/wg_cookie.h -------------------------------------------------------------------------------- /src/wg_noise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/wg_noise.c -------------------------------------------------------------------------------- /src/wg_noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/src/wg_noise.h -------------------------------------------------------------------------------- /tests/netns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WireGuard/wireguard-freebsd/HEAD/tests/netns.sh --------------------------------------------------------------------------------