Update On Tue Apr 30 20:31:49 CEST 2024

This commit is contained in:
github-action[bot]
2024-04-30 20:31:50 +02:00
parent 3e452bc337
commit a350205715
106 changed files with 1428 additions and 769 deletions

View File

@@ -1,6 +1,6 @@
//! AEAD packet I/O facilities
//!
//! AEAD protocol is defined in <https://shadowsocks.org/doc/aead.html>.
//! AEAD protocol is defined in <https://shadowsocks.org/en/spec/AEAD.html>.
//!
//! ```plain
//! TCP request (before encryption)
@@ -305,7 +305,7 @@ impl DecryptedReader {
};
if plen > MAX_PACKET_SIZE {
// https://shadowsocks.org/doc/aead.html
// https://shadowsocks.org/en/spec/AEAD-Ciphers.html
//
// AEAD TCP protocol have reserved the higher two bits for future use
return Err(ProtocolError::DataTooLong(plen));