Refactor error handler

This commit is contained in:
世界 2022-06-30 21:02:01 +08:00
parent 30b5895320
commit 63a57e6e12
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 3 additions and 6 deletions

View file

@ -100,5 +100,5 @@ func IsTimeout(err error) bool {
}
type Handler interface {
HandleError(err error)
NewError(ctx context.Context, err error)
}

View file

@ -87,7 +87,7 @@ func (s *Service[T]) NewContextPacket(ctx context.Context, key T, buffer *buf.Bu
go func() {
err := s.handler.NewPacketConnection(ctx, c, metadata)
if err != nil {
s.handler.HandleError(err)
s.handler.NewError(ctx, err)
}
c.Close()
s.nat.Delete(key)

View file

@ -19,10 +19,7 @@ import (
N "github.com/sagernet/sing/common/network"
)
type Handler interface {
N.TCPConnectionHandler
N.UDPConnectionHandler
}
type Handler = N.TCPConnectionHandler
func HandleConnection(ctx context.Context, conn net.Conn, authenticator auth.Authenticator, handler Handler, metadata M.Metadata) error {
reader := std_bufio.NewReader(conn)