From: Brad Fitzpatrick Date: Wed, 20 Oct 2021 15:56:39 +0000 (-0700) Subject: ipc, rwcancel: compile on js/wasm X-Git-Tag: 0.0.20220117~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=82e0b734e5d28f96205de65fd2179e08fd91b1db;p=thirdparty%2Fwireguard-go.git ipc, rwcancel: compile on js/wasm Signed-off-by: Brad Fitzpatrick --- 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 similarity index 80% rename from rwcancel/rwcancel_windows.go rename to 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