feat: quic-go v0.40.0

This commit is contained in:
Toby 2023-11-12 15:42:46 -08:00
parent 9940ea9dd7
commit c62dc51017
11 changed files with 54 additions and 41 deletions

View file

@ -48,10 +48,20 @@ func (c DialError) Error() string {
}
// ClosedError is returned when the client attempts to use a closed connection.
type ClosedError struct{}
type ClosedError struct {
Err error // Can be nil
}
func (c ClosedError) Error() string {
return "connection closed"
if c.Err == nil {
return "connection closed"
} else {
return "connection closed: " + c.Err.Error()
}
}
func (c ClosedError) Unwrap() error {
return c.Err
}
// ProtocolError is returned when the server/client runs into an unexpected