Update dependencies

This commit is contained in:
世界 2023-04-14 19:19:27 +08:00
parent 9df96ac7f1
commit 5c20d0b4d5
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
6 changed files with 19 additions and 19 deletions

View file

@ -32,10 +32,10 @@ type TLSObfs struct {
func (to *TLSObfs) read(b []byte, discardN int) (int, error) {
buf := B.Get(discardN)
_, err := io.ReadFull(to.Conn, buf)
B.Put(buf)
if err != nil {
return 0, err
}
B.Put(buf)
sizeBuf := make([]byte, 2)
_, err = io.ReadFull(to.Conn, sizeBuf)