Make shadowsocks service implements udp handler

This commit is contained in:
世界 2022-05-30 12:26:07 +08:00
parent b7d63b55c9
commit 1273973c66
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 9 additions and 0 deletions

View file

@ -118,6 +118,10 @@ func (s *Service) newConnection(ctx context.Context, conn net.Conn, metadata M.M
}, metadata)
}
func (s *Service) HandleError(err error) {
s.handler.HandleError(err)
}
type serverConn struct {
*Service
net.Conn

View file

@ -419,6 +419,10 @@ process:
return nil
}
func (s *Service) HandleError(err error) {
s.handler.HandleError(err)
}
type serverPacketWriter struct {
*Service
N.PacketConn

View file

@ -28,6 +28,7 @@ type Method interface {
type Service interface {
N.TCPConnectionHandler
N.UDPHandler
E.Handler
}
type Handler interface {