mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-03 20:07:40 +03:00
Make shadowsocks service implements udp handler
This commit is contained in:
parent
b7d63b55c9
commit
1273973c66
3 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -419,6 +419,10 @@ process:
|
|||
return nil
|
||||
}
|
||||
|
||||
func (s *Service) HandleError(err error) {
|
||||
s.handler.HandleError(err)
|
||||
}
|
||||
|
||||
type serverPacketWriter struct {
|
||||
*Service
|
||||
N.PacketConn
|
||||
|
|
|
@ -28,6 +28,7 @@ type Method interface {
|
|||
type Service interface {
|
||||
N.TCPConnectionHandler
|
||||
N.UDPHandler
|
||||
E.Handler
|
||||
}
|
||||
|
||||
type Handler interface {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue