ReadClientHello function

This commit is contained in:
9seconds
2026-03-12 19:07:10 +01:00
parent 1182b9ef6f
commit 59557059df
12 changed files with 957 additions and 1 deletions
+16
View File
@@ -0,0 +1,16 @@
package fake
import (
"errors"
"time"
)
const (
ClientHelloReadTimeout = 5 * time.Second
)
var (
resetDeadline time.Time
ErrBadDigest = errors.New("incorrect client random")
)