aboutsummaryrefslogtreecommitdiffstats
path: root/Sources/WireGuardKitGo/wireguard.h
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2020-12-15 13:16:35 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2020-12-15 13:16:52 +0100
commit27b32e60b29712c7bb9bc877b9409bbe63c63554 (patch)
treeabb6807d7022aba6fa40b6355075db2df7b42e5c /Sources/WireGuardKitGo/wireguard.h
parentRevert "[REVERT ME SOON] TunnelsManager: Workaround for macOS Catalina deleting tunnels arbitrarily" (diff)
downloadwireguard-apple-27b32e60b29712c7bb9bc877b9409bbe63c63554.tar.xz
wireguard-apple-27b32e60b29712c7bb9bc877b9409bbe63c63554.zip
WireGuardKitGo: update to latest wireguard-go tag
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'Sources/WireGuardKitGo/wireguard.h')
-rw-r--r--Sources/WireGuardKitGo/wireguard.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Sources/WireGuardKitGo/wireguard.h b/Sources/WireGuardKitGo/wireguard.h
index 9da8cef..b49464e 100644
--- a/Sources/WireGuardKitGo/wireguard.h
+++ b/Sources/WireGuardKitGo/wireguard.h
@@ -11,13 +11,13 @@
#include <stdbool.h>
typedef void(*logger_fn_t)(void *context, int level, const char *msg);
-extern void wgEnableRoaming(bool enabled);
extern void wgSetLogger(void *context, logger_fn_t logger_fn);
extern int wgTurnOn(const char *settings, int32_t tun_fd);
extern void wgTurnOff(int handle);
extern int64_t wgSetConfig(int handle, const char *settings);
extern char *wgGetConfig(int handle);
extern void wgBumpSockets(int handle);
+extern void wgDisableSomeRoamingForBrokenMobileSemantics(int handle);
extern const char *wgVersion();
#endif