diff --git a/src/wasi.ts b/src/wasi.ts index 2230cf2..1a2e433 100644 --- a/src/wasi.ts +++ b/src/wasi.ts @@ -664,6 +664,9 @@ export default class WASI { sock_shutdown(fd: number, how) { throw "sockets not supported"; }, + sock_accept(fd: number, flags) { + throw "sockets not supported"; + }, }; } }