mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 05:17:38 +03:00
33 lines
701 B
Go
33 lines
701 B
Go
package socks
|
|
|
|
import "fmt"
|
|
|
|
type UnsupportedVersionException struct {
|
|
Version byte
|
|
}
|
|
|
|
func (e UnsupportedVersionException) Error() string {
|
|
return fmt.Sprint("unsupported version: ", e.Version)
|
|
}
|
|
|
|
type UnsupportedAuthTypeException struct {
|
|
Method byte
|
|
}
|
|
|
|
func (e UnsupportedAuthTypeException) Error() string {
|
|
return fmt.Sprint("unsupported auth type: ", e.Method)
|
|
}
|
|
|
|
type UnsupportedCommandException struct {
|
|
Command byte
|
|
}
|
|
|
|
func (e UnsupportedCommandException) Error() string {
|
|
return fmt.Sprint("unsupported command: ", e.Command)
|
|
}
|
|
|
|
type UsernamePasswordAuthFailureException struct{}
|
|
|
|
func (e UsernamePasswordAuthFailureException) Error() string {
|
|
return "username/password auth failed"
|
|
}
|