deno/ext/http
Bartek Iwańczuk da1bf978f0
feat: add tcpBacklog arg to Deno.listen{Tls} and Deno.serve (#30541)
This commit adds `tcpBacklog` argument to `Deno.listen`,
`Deno.listenTls` and `Deno.serve` APIs.

The argument specifies maximum number of pending connections in the
listen queue, and by default is set to 511. 

Users that expect huge bursts of traffic can customize this
option to a higher value.

Ref https://github.com/denoland/deno/pull/30471
Closes https://github.com/denoland/deno/issues/30388
2025-08-28 09:43:20 +02:00
..
benches chore: update to edition 2024 (#29923) 2025-07-02 17:59:39 -07:00
00_serve.ts feat: add tcpBacklog arg to Deno.listen{Tls} and Deno.serve (#30541) 2025-08-28 09:43:20 +02:00
01_http.js chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
02_websocket.ts chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
Cargo.toml 2.4.5 (#30476) 2025-08-21 13:41:58 +02:00
compressible.rs chore: Happy New Year 2025 (#27509) 2024-12-31 19:12:39 +00:00
fly_accept_encoding.rs chore: update to edition 2024 (#29923) 2025-07-02 17:59:39 -07:00
http_next.rs fix: android build (#30360) 2025-08-12 15:47:18 +02:00
lib.rs fix: android build (#30360) 2025-08-12 15:47:18 +02:00
network_buffered_stream.rs chore: update to edition 2024 (#29923) 2025-07-02 17:59:39 -07:00
reader_stream.rs chore: update to edition 2024 (#29923) 2025-07-02 17:59:39 -07:00
README.md chore: add README to ext/http/ (#11958) 2021-09-08 20:48:28 +02:00
request_body.rs chore: Rust 1.89.0 (#30364) 2025-08-09 11:11:48 +00:00
request_properties.rs fix: android build (#30360) 2025-08-12 15:47:18 +02:00
response_body.rs chore: update to edition 2024 (#29923) 2025-07-02 17:59:39 -07:00
service.rs chore: Rust 1.89.0 (#30364) 2025-08-09 11:11:48 +00:00
websocket_upgrade.rs chore: update to edition 2024 (#29923) 2025-07-02 17:59:39 -07:00

deno_http

This crate implements server-side HTTP based on primitives from the Fetch API.