github.com/liloew/wireguard-go@v0.0.0-20220224014633-9cd745e6f114/ipc/uapi_js.go (about) 1 /* SPDX-License-Identifier: MIT 2 * 3 * Copyright (C) 2021 WireGuard LLC. All Rights Reserved. 4 */ 5 6 package ipc 7 8 // Made up sentinel error codes for the js/wasm platform. 9 const ( 10 IpcErrorIO = 1 11 IpcErrorInvalid = 2 12 IpcErrorPortInUse = 3 13 IpcErrorUnknown = 4 14 IpcErrorProtocol = 5 15 )