amneziawg-go/ipc/uapi_wasm.go
Mark Puha 69ca16c4fb Revert "Merge pull request #78 from jmwample/jmwample/upstream"
This reverts commit fe75b639fa, reversing
changes made to 27e661d68e.
2025-07-04 16:19:48 +02:00

15 lines
295 B
Go

/* SPDX-License-Identifier: MIT
*
* Copyright (C) 2017-2023 WireGuard LLC. All Rights Reserved.
*/
package ipc
// Made up sentinel error codes for {js,wasip1}/wasm.
const (
IpcErrorIO = 1
IpcErrorInvalid = 2
IpcErrorPortInUse = 3
IpcErrorUnknown = 4
IpcErrorProtocol = 5
)