Files
wireguard-go/ipc/uapi_wasm.go
T

16 lines
295 B
Go
Raw Normal View History

2021-10-20 08:56:39 -07:00
/* SPDX-License-Identifier: MIT
*
2022-09-20 17:21:32 +02:00
* Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved.
2021-10-20 08:56:39 -07:00
*/
package ipc
2023-06-11 16:10:38 -07:00
// Made up sentinel error codes for {js,wasip1}/wasm.
2021-10-20 08:56:39 -07:00
const (
IpcErrorIO = 1
IpcErrorInvalid = 2
IpcErrorPortInUse = 3
IpcErrorUnknown = 4
IpcErrorProtocol = 5
)