mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-04 12:27:39 +03:00
Cleanup code
This commit is contained in:
parent
731a30d73b
commit
e55284e180
5 changed files with 39 additions and 0 deletions
8
none.go
8
none.go
|
@ -194,6 +194,14 @@ func NewNoneService(udpTimeout int64, handler Handler) Service {
|
||||||
return s
|
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 {
|
func (s *NoneService) NewConnection(ctx context.Context, conn net.Conn, metadata M.Metadata) error {
|
||||||
destination, err := M.SocksaddrSerializer.ReadAddrPort(conn)
|
destination, err := M.SocksaddrSerializer.ReadAddrPort(conn)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -32,6 +32,7 @@ type Service struct {
|
||||||
keySaltLength int
|
keySaltLength int
|
||||||
constructor func(key []byte) (cipher.AEAD, error)
|
constructor func(key []byte) (cipher.AEAD, error)
|
||||||
key []byte
|
key []byte
|
||||||
|
password string
|
||||||
handler shadowsocks.Handler
|
handler shadowsocks.Handler
|
||||||
udpNat *udpnat.Service[netip.AddrPort]
|
udpNat *udpnat.Service[netip.AddrPort]
|
||||||
}
|
}
|
||||||
|
@ -71,6 +72,14 @@ func NewService(method string, key []byte, password string, udpTimeout int64, ha
|
||||||
return s, nil
|
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 {
|
func (s *Service) NewConnection(ctx context.Context, conn net.Conn, metadata M.Metadata) error {
|
||||||
err := s.newConnection(ctx, conn, metadata)
|
err := s.newConnection(ctx, conn, metadata)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -23,6 +23,8 @@ import (
|
||||||
"lukechampine.com/blake3"
|
"lukechampine.com/blake3"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var _ shadowsocks.Service = (*RelayService[int])(nil)
|
||||||
|
|
||||||
type RelayService[U comparable] struct {
|
type RelayService[U comparable] struct {
|
||||||
name string
|
name string
|
||||||
keySaltLength int
|
keySaltLength int
|
||||||
|
@ -39,6 +41,14 @@ type RelayService[U comparable] struct {
|
||||||
udpNat *udpnat.Service[uint64]
|
udpNat *udpnat.Service[uint64]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *RelayService[U]) Name() string {
|
||||||
|
return s.name
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *RelayService[U]) Password() string {
|
||||||
|
return base64.StdEncoding.EncodeToString(s.iPSK)
|
||||||
|
}
|
||||||
|
|
||||||
func (s *RelayService[U]) UpdateUsers(userList []U, keyList [][]byte, destinationList []M.Socksaddr) error {
|
func (s *RelayService[U]) UpdateUsers(userList []U, keyList [][]byte, destinationList []M.Socksaddr) error {
|
||||||
uPSKHash := make(map[[aes.BlockSize]byte]U)
|
uPSKHash := make(map[[aes.BlockSize]byte]U)
|
||||||
uDestination := make(map[U]M.Socksaddr)
|
uDestination := make(map[U]M.Socksaddr)
|
||||||
|
|
|
@ -36,6 +36,8 @@ var (
|
||||||
ErrBadPadding = E.New("bad request: damaged padding")
|
ErrBadPadding = E.New("bad request: damaged padding")
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var _ shadowsocks.Service = (*Service)(nil)
|
||||||
|
|
||||||
type Service struct {
|
type Service struct {
|
||||||
name string
|
name string
|
||||||
keySaltLength int
|
keySaltLength int
|
||||||
|
@ -117,6 +119,14 @@ func NewService(method string, psk []byte, udpTimeout int64, handler shadowsocks
|
||||||
return s, nil
|
return s, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (s *Service) Name() string {
|
||||||
|
return s.name
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *Service) Password() string {
|
||||||
|
return base64.StdEncoding.EncodeToString(s.psk)
|
||||||
|
}
|
||||||
|
|
||||||
func (s *Service) NewConnection(ctx context.Context, conn net.Conn, metadata M.Metadata) error {
|
func (s *Service) NewConnection(ctx context.Context, conn net.Conn, metadata M.Metadata) error {
|
||||||
err := s.newConnection(ctx, conn, metadata)
|
err := s.newConnection(ctx, conn, metadata)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -24,6 +24,8 @@ type Method interface {
|
||||||
}
|
}
|
||||||
|
|
||||||
type Service interface {
|
type Service interface {
|
||||||
|
Name() string
|
||||||
|
Password() string
|
||||||
N.TCPConnectionHandler
|
N.TCPConnectionHandler
|
||||||
N.UDPHandler
|
N.UDPHandler
|
||||||
E.Handler
|
E.Handler
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue