diff options
author | Brad Fitzpatrick <bradfitz@tailscale.com> | 2021-10-20 08:56:39 -0700 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2021-10-20 14:50:05 -0600 |
commit | 82e0b734e5d28f96205de65fd2179e08fd91b1db (patch) | |
tree | 1f7306f3dea903a6d3baf09eafadeeb1a891dc0e | |
parent | fdf57a1fa4821c3d82c79325d00f00062ffde699 (diff) |
ipc, rwcancel: compile on js/wasm
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
-rw-r--r-- | ipc/uapi_js.go | 15 | ||||
-rw-r--r-- | rwcancel/rwcancel.go | 2 | ||||
-rw-r--r-- | rwcancel/rwcancel_stub.go (renamed from rwcancel/rwcancel_windows.go) | 2 |
3 files changed, 18 insertions, 1 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 +) diff --git a/rwcancel/rwcancel.go b/rwcancel/rwcancel.go index 59bbe57..c3b2299 100644 --- a/rwcancel/rwcancel.go +++ b/rwcancel/rwcancel.go @@ -1,4 +1,4 @@ -//go:build !windows +//go:build !windows && !js /* SPDX-License-Identifier: MIT * diff --git a/rwcancel/rwcancel_windows.go b/rwcancel/rwcancel_stub.go index 0316911..fae47b4 100644 --- a/rwcancel/rwcancel_windows.go +++ b/rwcancel/rwcancel_stub.go @@ -1,3 +1,5 @@ +//go:build windows || js + // SPDX-License-Identifier: MIT package rwcancel |