1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-29 16:30:56 -05:00
denoland-deno/extensions/net
TheAifam5 353a4a1af3
feat: Add --unsafely-treat-insecure-origin-as-secure flag to disable SSL verification (#11324)
This commit adds "--unsafely-treat-insecure-origin-as-secure" flag 
that allows to disable SSL verification for all domains, or specific
domains if they were passed as an argument to the flag.

Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2021-08-09 16:53:21 +02:00
..
01_net.js fix: primordials in extensions/net and runtime/js (#11270) 2021-07-04 17:26:38 +02:00
02_tls.js feat: support client certificates for connectTls (#11598) 2021-08-09 15:55:00 +02:00
04_net_unstable.js feat: Add "deno_net" extension (#11150) 2021-06-29 01:43:03 +02:00
Cargo.toml feat(tls): Optionally support loading native certs (#11491) 2021-08-07 14:49:38 +02:00
io.rs feat: Add "deno_net" extension (#11150) 2021-06-29 01:43:03 +02:00
lib.deno_net.d.ts feat: support client certificates for connectTls (#11598) 2021-08-09 15:55:00 +02:00
lib.deno_net.unstable.d.ts feat: support client certificates for connectTls (#11598) 2021-08-09 15:55:00 +02:00
lib.rs feat: Add --unsafely-treat-insecure-origin-as-secure flag to disable SSL verification (#11324) 2021-08-09 16:53:21 +02:00
ops.rs chore: upgrade Rust to 1.54.0 (#11554) 2021-07-30 15:03:41 +02:00
ops_tls.rs feat: Add --unsafely-treat-insecure-origin-as-secure flag to disable SSL verification (#11324) 2021-08-09 16:53:21 +02:00
ops_unix.rs feat: Add "deno_net" extension (#11150) 2021-06-29 01:43:03 +02:00
README.md feat: Add "deno_net" extension (#11150) 2021-06-29 01:43:03 +02:00
resolve_addr.rs feat: Add "deno_net" extension (#11150) 2021-06-29 01:43:03 +02:00

deno_net

This crate implements networking APIs.

This crate depends on following extensions:

  • "deno_web"
  • "deno_fetch"

Following ops are provided:

  • "op_net_read_async"
  • "op_net_write_async"
  • "op_net_shutdown"
  • "op_accept"
  • "op_connect"
  • "op_listen"
  • "op_datagram_receive"
  • "op_datagram_send"
  • "op_dns_resolve"
  • "op_start_tls"
  • "op_connect_tls"
  • "op_listen_tls"
  • "op_accept_tls"
  • "op_http_start"
  • "op_http_request_next"
  • "op_http_request_read"
  • "op_http_response"
  • "op_http_response_write"
  • "op_http_response_close"