From 70a50344315a4c3361fc321e78e076fb09a502b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Souto?= Date: Mon, 23 Mar 2020 22:02:51 +0000 Subject: feat: Support Unix Domain Sockets (#4176) --- tools/deno_tcp.ts | 1 - 1 file changed, 1 deletion(-) (limited to 'tools') diff --git a/tools/deno_tcp.ts b/tools/deno_tcp.ts index 9a884cb70..068c48a04 100644 --- a/tools/deno_tcp.ts +++ b/tools/deno_tcp.ts @@ -8,7 +8,6 @@ const listener = Deno.listen({ hostname, port: Number(port) }); const response = new TextEncoder().encode( "HTTP/1.1 200 OK\r\nContent-Length: 12\r\n\r\nHello World\n" ); - async function handle(conn: Deno.Conn): Promise { const buffer = new Uint8Array(1024); try { -- cgit v1.2.3