mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 04:57:40 +03:00
feat: quic-go v0.40.0
This commit is contained in:
parent
9940ea9dd7
commit
c62dc51017
11 changed files with 54 additions and 41 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue