deno/ext/net
2024-01-04 08:51:39 +05:30
..
01_net.js fix(ext/node): UdpSocket ref and unref (#21777) 2024-01-04 08:51:39 +05:30
02_tls.js chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
Cargo.toml chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
io.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
lib.deno_net.d.ts chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
lib.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
ops.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
ops_tls.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
ops_unix.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
raw.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
README.md
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"