2021-10-20 17:56:39 +02: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 17:56:39 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
package ipc
|
|
|
|
|
2023-06-12 01:10:38 +02:00
|
|
|
// Made up sentinel error codes for {js,wasip1}/wasm.
|
2021-10-20 17:56:39 +02:00
|
|
|
const (
|
|
|
|
IpcErrorIO = 1
|
|
|
|
IpcErrorInvalid = 2
|
|
|
|
IpcErrorPortInUse = 3
|
|
|
|
IpcErrorUnknown = 4
|
|
|
|
IpcErrorProtocol = 5
|
|
|
|
)
|