13 lines
376 B
Go
13 lines
376 B
Go
package tunnel
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNotConnected = errors.New("not connected")
|
|
ErrCouldNotConnect = errors.New("could not connect")
|
|
ErrConnectionClosed = errors.New("connection closed")
|
|
ErrAuthFailed = errors.New("auth failed")
|
|
ErrUnexpectedMessage = errors.New("unexpected message")
|
|
ErrUnexpectedResponse = errors.New("unexpected response")
|
|
)
|