mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 04:57:40 +03:00
chore: code adjustments
This commit is contained in:
parent
cbedb27f0f
commit
f0ad2f77ca
3 changed files with 30 additions and 20 deletions
|
@ -47,6 +47,13 @@ func (c DialError) Error() string {
|
|||
return "dial error: " + c.Message
|
||||
}
|
||||
|
||||
// ClosedError is returned when the client attempts to use a closed connection.
|
||||
type ClosedError struct{}
|
||||
|
||||
func (c ClosedError) Error() string {
|
||||
return "connection closed"
|
||||
}
|
||||
|
||||
// ProtocolError is returned when the server/client runs into an unexpected
|
||||
// or malformed request/response/message.
|
||||
type ProtocolError struct {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue