mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
375ce63c63
This allows resources to be "streams" by implementing read/write/shutdown. These streams are implicit since their nature (read/write/duplex) isn't known until called, but we could easily add another method to explicitly tag resources as streams. `op_read/op_write/op_shutdown` are now builtin ops provided by `deno_core` Note: this current implementation is simple & straightforward but it results in an additional alloc per read/write call Closes #12556
22 lines
358 B
Markdown
22 lines
358 B
Markdown
# 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"
|