1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/ext/net
Bartek Iwańczuk 8986e2ced4
v1.25.0
2022-08-25 00:20:07 +02:00
..
01_net.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
02_tls.js perf(ops): Monomorphic sync op calls (#15337) 2022-08-11 15:56:56 +02:00
04_net_unstable.js feat(unstable): add ref/unref to Listener (#13961) 2022-03-23 12:04:20 +09:00
Cargo.toml v1.25.0 2022-08-25 00:20:07 +02:00
io.rs chore: use Rust 1.63.0 (#15464) 2022-08-21 19:31:14 +02:00
lib.deno_net.d.ts docs: add permission tags to JSDocs (#15541) 2022-08-23 10:57:01 +10:00
lib.rs feat(ops): V8 Fast Calls (#15291) 2022-08-21 17:37:53 +05:30
ops.rs chore: use Rust 1.63.0 (#15464) 2022-08-21 19:31:14 +02:00
ops_tls.rs build: require safety comments on unsafe code (#13870) 2022-06-26 00:13:24 +02:00
ops_unix.rs fix(net): don't panic on failed UDS removal (#15157) 2022-07-12 11:53:53 -04: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"