2021-10-20 08:56:39 -07:00
|
|
|
/* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
2025-05-04 17:48:53 +02:00
|
|
|
* Copyright (C) 2017-2025 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
|
|
|
|
|
)
|