From 82e0b734e5d28f96205de65fd2179e08fd91b1db Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Wed, 20 Oct 2021 08:56:39 -0700 Subject: ipc, rwcancel: compile on js/wasm Signed-off-by: Brad Fitzpatrick --- ipc/uapi_js.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 ipc/uapi_js.go (limited to 'ipc') 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 +) -- cgit v1.2.3