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

@ -32,6 +32,7 @@ type Service struct {
keySaltLength int
constructor func(key []byte) (cipher.AEAD, error)
key []byte
password string
handler shadowsocks.Handler
udpNat *udpnat.Service[netip.AddrPort]
}
@ -71,6 +72,14 @@ func NewService(method string, key []byte, password string, udpTimeout int64, ha
return s, nil
}
func (s *Service) Name() string {
return s.name
}
func (s *Service) Password() string {
return s.password
}
func (s *Service) NewConnection(ctx context.Context, conn net.Conn, metadata M.Metadata) error {
err := s.newConnection(ctx, conn, metadata)
if err != nil {