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
2022-02-27 15:18:30 +01:00
..
01_net.js feat: Add Deno.TcpConn class, change return type from Deno.connect (#13714) 2022-02-27 15:18:30 +01:00
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 chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
Cargo.toml chore: bump crate versions for 1.19.1 (#13760) 2022-02-24 17:45:39 -05:00
io.rs feat(ext/net): Add Conn.setNoDelay and Conn.setKeepAlive (#13103) 2022-01-31 16:36:54 +01:00
lib.deno_net.d.ts feat: Add Deno.TcpConn class, change return type from Deno.connect (#13714) 2022-02-27 15:18:30 +01:00
lib.rs chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
ops.rs chore: make new TCP conn methods unstable (#13686) 2022-02-16 17:32:29 +01:00
ops_tls.rs feat(ext/net): support cert, key options in listenTls (#13740) 2022-02-24 13:16:56 +09: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"