Add simple sslocal implementation

This commit is contained in:
世界 2022-04-07 02:54:48 +08:00
parent 2e74275ceb
commit 542fa4f975
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
50 changed files with 674 additions and 1959 deletions

View file

@ -10,14 +10,6 @@ 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
}