在体验了简单的 echo client/server 后,我感觉 s2n-quic 把 QUIC 协议的使用门槛大大降低,我们可以用和处理 TCP client/server 相同结构的代码,来处理 QUIC。 为了进一步体验 QUIC 和已有项目的结合,我尝试着把我之前为极客时间的《Rust 第一课》做的...
在体验了简单的 echo client/server 后,我感觉 s2n-quic 把 QUIC 协议的使用门槛大大降低,我们可以用和处理 TCP client/server 相同结构的代码,来处理 QUIC。 为了进一步体验 QUIC 和已有项目的结合,我尝试着把我之前为极客时间的《Rust 第一课》做的示范性的类似 redis 的 kv server(github 下 tyrchen/simple...
在体验了简单的 echo client/server 后,我感觉 s2n-quic 把 QUIC 协议的使用门槛大大降低,我们可以用和处理 TCP client/server 相同结构的代码,来处理 QUIC。 为了进一步体验 QUIC 和已有项目的结合,我尝试着把我之前为极客时间的《Rust 第一课》做的示范性的类似 redis 的 kv server(github 下 tyrchen/simple...
Like s2n-tls, which has already been introduced in various AWS services, AWS services that need to make use of the benefits of QUIC will begin integrating s2n-quic. QUIC is a standardized protocol which, when introduced in a service like web content delivery, can improve user experience or a...
QUIC 是一种为性能而设计的加密传输协议,它是尚处在襁褓之中的 HTTP/3(最新是 draft-34)的基础。根据维基百科的资料显示,QUIC 在 2012 年就被部署到 Google 内部,并于 2013 年对外发布。2021 年 5 月,IETF 在 RFC 9000 中对 QUIC 的基本功能进行了标准化,并在 RFC 9001 中标准化了如何使用 TLS 保护 ...
我们很高兴地宣布在 AWS 加密开源库中推出 QUIC 协议开源 Rust 实施方案 s2n-quic。我们还将 AWS 的 TLS 协议开源 C 实施方案 s2n 重命名为s2n-tls。s2n-quic 的 API 经过精心设计,它快速、小巧并且以简单易用为重中之重。 其以 Rust 编写,因此具有性能、线程和内存安全性等优势。对于 TLS 1.3 握手,s2n-...
We are pleased to announce the availability of s2n-quic, an open-source Rust implementation of the QUIC protocol, in our AWS encryption open-source libraries. We are also renaming s2n, AWS’s open-source C implementation of the TLS protocol, to s2n-tls. s2n-quic has an API that is ...
Make your first contribution to this repository by tackling one of the issues listed below. Read the contributing guidelines s2n-quic / CONTRIBUTING.md Each issue displayed here is a "good first issue," selected for its relative approachability for first-time contributors....
29 changes: 15 additions & 14 deletions 29 quic/s2n-quic-core/src/recovery/cubic.rs Original file line numberDiff line numberDiff line change @@ -444,34 +444,31 @@ impl CongestionController for CubicCongestionController { self.slow_start.on_congestion_event(self.congestion_window); } //=...
上周Amazon 开源了 s2n-quic 这个 QUIC 协议的软件包。s2n-quic 用 Rust 撰写,可见 Amazon/AWS 对 Rust 不断投入的决心。s2n 这个名字是Signal to Noise 的缩写,是对我们生活中无处不在的信息加密的致敬 —— 因为加密是一种将有意义的信号(Signal)伪装成看似随机的噪声(Noise)的行为。Amazon 有好几个 s2n...