deno/ext/net
Matt Mastracci 0efe438f7c
perf: remove opAsync (#21690)
`opAsync` requires a lookup by name on each async call. This is a
mechanical translation of all opAsync calls to ensureFastOps.

The `opAsync` API on Deno.core will be removed at a later time.
2023-12-27 02:30:26 +01:00
..
01_net.js perf: remove opAsync (#21690) 2023-12-27 02:30:26 +01:00
02_tls.js perf: remove opAsync (#21690) 2023-12-27 02:30:26 +01:00
Cargo.toml chore: forward v1.39.1 commit to main (#21667) (#21671) 2023-12-21 18:43:52 +00:00
io.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
lib.deno_net.d.ts feat: disposable Deno resources (#20845) 2023-11-01 20:26:12 +01:00
lib.rs perf: remove opAsync (#21690) 2023-12-27 02:30:26 +01:00
ops.rs refactor: FeatureChecker integration in ext/ crates (#20797) 2023-10-12 15:55:50 +00:00
ops_tls.rs feat(ext/net): use rustls_tokio_stream (#21205) 2023-11-15 16:12:46 -07:00
ops_unix.rs fix(net): remove unstable check for unix socket listen (#21592) 2023-12-15 10:22:40 +01:00
raw.rs feat(ext/net): use rustls_tokio_stream (#21205) 2023-11-15 16:12:46 -07:00
README.md Revert "Revert "refactor(ext/net): clean up variadic network ops (#16… (#16422) 2022-10-25 22:50:55 +02:00
resolve_addr.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00: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_tcp"
  • "op_net_accept_unix"
  • "op_net_connect_tcp"
  • "op_net_connect_unix"
  • "op_net_listen_tcp"
  • "op_net_listen_udp"
  • "op_net_listen_unix"
  • "op_net_listen_unixpacket"
  • "op_net_recv_udp"
  • "op_net_recv_unixpacket"
  • "op_net_send_udp"
  • "op_net_send_unixpacket"
  • "op_dns_resolve"
  • "op_net_connect_tls"
  • "op_net_listen_tls"
  • "op_net_accept_tls"
  • "op_tls_start"
  • "op_tls_handshake"