mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
crypto/tls: set const maxUselessRecords to 32 (the same with OpenSSL) (#171)
https://github.com/golang/go/pull/58913
This commit is contained in:
parent
92986c9bcf
commit
4f1df6c200
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ const (
|
|||
maxCiphertextTLS13 = 16384 + 256 // maximum ciphertext length in TLS 1.3
|
||||
recordHeaderLen = 5 // record header length
|
||||
maxHandshake = 65536 // maximum handshake we support (protocol max is 16 MB)
|
||||
maxUselessRecords = 16 // maximum number of consecutive non-advancing records
|
||||
maxUselessRecords = 32 // maximum number of consecutive non-advancing records
|
||||
)
|
||||
|
||||
// TLS record types.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue