Crates.io | s2n-quic-transport |
lib.rs | s2n-quic-transport |
version | |
source | src |
created_at | 2022-02-16 01:27:33.383046+00 |
updated_at | 2025-03-10 18:15:33.865255+00 |
description | Internal crate used by s2n-quic |
homepage | |
repository | https://github.com/aws/s2n-quic |
max_upload_size | |
id | 533022 |
Cargo.toml error: | TOML parse error at line 20, column 1 | 20 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
This module contains all main runtime components for receiving and sending data via the QUIC protocol.
This is an internal crate used by s2n-quic. The API is not currently stable and should not be used directly.
Streams allow to transfer data between the client and the server. Multiple streams can be multiplexed on a single connection.
Connections describe the logic connection between 2 peers.
Endpoints are responsible for receiving and sending UDP packets. They are the entry-point into the QUIC stack on a host.