mirror of
https://github.com/refraction-networking/utls.git
synced 2025-04-03 20:17:36 +03:00
crypto/tls: failed tls.Conn.Write returns a permanent error
Fixes #29971 Change-Id: I2f1653640c88fafe0ec17a75dcf41d5896c4cb8e Reviewed-on: https://go-review.googlesource.com/c/go/+/227840 Run-TryBot: Katie Hockman <katie@golang.org> Run-TryBot: Filippo Valsorda <filippo@golang.org> Reviewed-by: Filippo Valsorda <filippo@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
parent
321fc90102
commit
7f376c8689
3 changed files with 88 additions and 3 deletions
17
conn.go
17
conn.go
|
@ -162,9 +162,22 @@ type halfConn struct {
|
|||
trafficSecret []byte // current TLS 1.3 traffic secret
|
||||
}
|
||||
|
||||
type permamentError struct {
|
||||
err net.Error
|
||||
}
|
||||
|
||||
func (e *permamentError) Error() string { return e.err.Error() }
|
||||
func (e *permamentError) Unwrap() error { return e.err }
|
||||
func (e *permamentError) Timeout() bool { return e.err.Timeout() }
|
||||
func (e *permamentError) Temporary() bool { return false }
|
||||
|
||||
func (hc *halfConn) setErrorLocked(err error) error {
|
||||
hc.err = err
|
||||
return err
|
||||
if e, ok := err.(net.Error); ok {
|
||||
hc.err = &permamentError{err: e}
|
||||
} else {
|
||||
hc.err = err
|
||||
}
|
||||
return hc.err
|
||||
}
|
||||
|
||||
// prepareCipherSpec sets the encryption and MAC states
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue