Deno.shutdown
Shutdown socket send operations.
Matches behavior of POSIX shutdown(3).
const listener = Deno.listen({ port: 80 });
const conn = await listener.accept();
Deno.shutdown(conn.rid);
function shutdown(rid: number): Promise<void>;
shutdown(rid: number): Promise<void>