aboutsummaryrefslogtreecommitdiffstats
path: root/ipc
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@tailscale.com>2021-10-20 08:56:39 -0700
committerJason A. Donenfeld <Jason@zx2c4.com>2021-10-20 14:50:05 -0600
commit82e0b734e5d28f96205de65fd2179e08fd91b1db (patch)
tree1f7306f3dea903a6d3baf09eafadeeb1a891dc0e /ipc
parentwintun: allow retrieving DLL version (diff)
downloadwireguard-go-82e0b734e5d28f96205de65fd2179e08fd91b1db.tar.xz
wireguard-go-82e0b734e5d28f96205de65fd2179e08fd91b1db.zip
ipc, rwcancel: compile on js/wasm
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
Diffstat (limited to 'ipc')
-rw-r--r--ipc/uapi_js.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/ipc/uapi_js.go b/ipc/uapi_js.go
new file mode 100644
index 0000000..be36b5d
--- /dev/null
+++ b/ipc/uapi_js.go
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: MIT
+ *
+ * Copyright (C) 2021 WireGuard LLC. All Rights Reserved.
+ */
+
+package ipc
+
+// Made up sentinel error codes for the js/wasm platform.
+const (
+ IpcErrorIO = 1
+ IpcErrorInvalid = 2
+ IpcErrorPortInUse = 3
+ IpcErrorUnknown = 4
+ IpcErrorProtocol = 5
+)