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);
© 2018–2021 the Deno authors
https://doc.deno.land/deno/stable/~/Deno.shutdown