0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/ext/net
denobot e7ea4edc8a
1.23.0 (#14878)
* 1.23.0

* docs(Releases.md): update a few items for 1.23

* docs(Releases.md): revert bad formatting

Co-authored-by: aslilac <aslilac@users.noreply.github.com>
Co-authored-by: McKayla Washburn <mckayla@hey.com>
2022-06-15 17:02:18 -06:00
..
01_net.js Reland "perf(http): optimize ReadableStreams backed by a resource" (#14346) 2022-04-22 16:19:08 +05:30
02_tls.js feat(ext/net): support cert, key options in listenTls (#13740) 2022-02-24 13:16:56 +09:00
04_net_unstable.js feat(unstable): add ref/unref to Listener (#13961) 2022-03-23 12:04:20 +09:00
Cargo.toml 1.23.0 (#14878) 2022-06-15 17:02:18 -06:00
io.rs Reland "perf(http): optimize ReadableStreams backed by a resource" (#14346) 2022-04-22 16:19:08 +05:30
lib.deno_net.d.ts feat(net): add Deno.UnixConn interface (#13787) 2022-03-04 20:33:13 +01:00
lib.rs fix: cargo publish fails without absolute paths (#13993) 2022-03-17 01:25:44 +01:00
ops.rs feat(ext/net): add CAA DNS record support in Deno.resolveDns() API (#14624) 2022-05-16 11:20:41 +02:00
ops_tls.rs fix: finish TLS handshake before shutting down (#14547) 2022-05-10 08:27:08 -04:00
ops_unix.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
README.md feat(core): streams (#12596) 2021-11-09 19:26:17 +01:00
resolve_addr.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00

deno_net

This crate implements networking APIs.

This crate depends on following extensions:

  • "deno_web"
  • "deno_fetch"

Following ops are provided:

  • "op_net_accept"
  • "op_net_connect"
  • "op_net_listen"
  • "op_dgram_recv"
  • "op_dgram_send"
  • "op_dns_resolve"
  • "op_tls_start"
  • "op_tls_connect"
  • "op_tls_listen"
  • "op_tls_accept"
  • "op_tls_handshake"