Cleanup code

This commit is contained in:
世界 2022-11-12 11:09:15 +08:00
parent 731a30d73b
commit e55284e180
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
5 changed files with 39 additions and 0 deletions

View file

@ -194,6 +194,14 @@ func NewNoneService(udpTimeout int64, handler Handler) Service {
return s
}
func (s *NoneService) Name() string {
return MethodNone
}
func (s *NoneService) Password() string {
return ""
}
func (s *NoneService) NewConnection(ctx context.Context, conn net.Conn, metadata M.Metadata) error {
destination, err := M.SocksaddrSerializer.ReadAddrPort(conn)
if err != nil {