mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 20:37:40 +03:00
25 lines
528 B
Go
25 lines
528 B
Go
package socks
|
|
|
|
import "fmt"
|
|
|
|
type UnsupportedVersionException struct {
|
|
Version byte
|
|
}
|
|
|
|
func (e UnsupportedVersionException) Error() string {
|
|
return fmt.Sprint("unsupported version: ", e.Version)
|
|
}
|
|
|
|
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"
|
|
}
|