diff options
Diffstat (limited to 'tools/deno_tcp.ts')
-rw-r--r-- | tools/deno_tcp.ts | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/tools/deno_tcp.ts b/tools/deno_tcp.ts index 2b259cd38..13ebe76af 100644 --- a/tools/deno_tcp.ts +++ b/tools/deno_tcp.ts @@ -24,12 +24,7 @@ async function handle(conn: Deno.Conn): Promise<void> { } } -async function main(): Promise<void> { - console.log("Listening on", addr); - while (true) { - const conn = await listener.accept(); - handle(conn); - } +console.log("Listening on", addr); +for await (const conn of listener) { + handle(conn); } - -main(); |