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 /ipc | |
parent | fdf57a1fa4821c3d82c79325d00f00062ffde699 (diff) |
ipc, rwcancel: compile on js/wasm
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/uapi_js.go | 15 |
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 +) |