1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/ext/net
Bert Belder cf9c4f0031
feat(ext/net): add TlsConn.handshake() (#12467)
A `handshake()` method was added that returns when the TLS handshake is
complete. The `TlsListener` and `TlsConn` interfaces were added to
accomodate this new method.

Closes: #11759.
2021-10-26 22:27:47 +02:00
..
01_net.js fix(core): poll async ops eagerly (#12385) 2021-10-17 19:50:42 +02:00
02_tls.js feat(ext/net): add TlsConn.handshake() (#12467) 2021-10-26 22:27:47 +02:00
04_net_unstable.js Rename extensions/ directory to ext/ (#11643) 2021-08-11 12:27:05 +02:00
Cargo.toml chore: bump crate version for 1.15.3 (#12531) 2021-10-25 15:48:01 +09:00
io.rs fix(ext/net): fix TLS bugs and add 'op_tls_handshake' (#12501) 2021-10-20 01:30:04 +02:00
lib.deno_net.d.ts feat(ext/net): add TlsConn.handshake() (#12467) 2021-10-26 22:27:47 +02:00
lib.rs chore: remove No*Permissions structs (#12316) 2021-10-04 22:56:24 +02:00
ops.rs feat: stabilize Deno.resolveDns (#12368) 2021-10-10 15:46:11 +05:30
ops_tls.rs fix(ext/net): fix TLS bugs and add 'op_tls_handshake' (#12501) 2021-10-20 01:30:04 +02:00
ops_unix.rs chore: various op cleanup (#12329) 2021-10-05 22:38:27 +02:00
README.md fix(ext/net): fix TLS bugs and add 'op_tls_handshake' (#12501) 2021-10-20 01:30:04 +02:00
resolve_addr.rs Rename extensions/ directory to ext/ (#11643) 2021-08-11 12:27:05 +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_tls_handshake"
  • "op_http_start"
  • "op_http_request_next"
  • "op_http_request_read"
  • "op_http_response"
  • "op_http_response_write"
  • "op_http_response_close"