deno/ext/net
denobot 2c97831fec
1.40.5 (#22423)
Bumped versions for 1.40.5

Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
2024-02-15 10:52:42 +05:30
..
01_net.js chore: cleanup obsolete Datagram export (#22078) 2024-02-15 10:32:21 +05:30
02_tls.js chore: cleanup ext/net/02_tls.js (#22032) 2024-02-15 10:32:21 +05:30
Cargo.toml 1.40.5 (#22423) 2024-02-15 10:52:42 +05:30
io.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
lib.deno_net.d.ts docs: point to "Deno 1.x to 2.x Migration Guide" for net APIs (#22275) 2024-02-08 14:56:46 +05:30
lib.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
ops_tls.rs Revert "chore: bump rustls-tokio-stream and rustls (#21955)" (#22097) 2024-01-25 04:47:45 +01:00
ops_unix.rs feat: Stabilize Deno.connect for 'unix' transport (#21937) 2024-01-14 21:50:58 +00:00
ops.rs fix: android support (#19437) 2024-01-10 06:04:14 -07:00
raw.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00: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 to 2024 (#21753) 2024-01-01 19:58:21 +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"