mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-04 04:17:39 +03:00
Cleanup code
This commit is contained in:
parent
731a30d73b
commit
e55284e180
5 changed files with 39 additions and 0 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue