mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-06 05:17:38 +03:00
Initial commit
This commit is contained in:
commit
5cc189a169
32 changed files with 2565 additions and 0 deletions
33
protocol/socks/exceptions.go
Normal file
33
protocol/socks/exceptions.go
Normal file
|
@ -0,0 +1,33 @@
|
|||
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"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue