Fix canceler

This commit is contained in:
世界 2024-03-24 00:11:20 +08:00
parent a069af4787
commit 04152ea672
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -2,6 +2,7 @@ package canceler
import (
"context"
"net"
"time"
"github.com/sagernet/sing/common"
@ -31,7 +32,7 @@ func (c *TimeoutPacketConn) ReadPacket(buffer *buf.Buffer) (destination M.Socksa
for {
err = c.PacketConn.SetReadDeadline(time.Now().Add(c.timeout))
if err != nil {
return M.Socksaddr{}, err
return
}
destination, err = c.PacketConn.ReadPacket(buffer)
if err == nil {
@ -43,7 +44,7 @@ func (c *TimeoutPacketConn) ReadPacket(buffer *buf.Buffer) (destination M.Socksa
return
}
} else {
return M.Socksaddr{}, err
return
}
}
}
@ -66,6 +67,7 @@ func (c *TimeoutPacketConn) SetTimeout(timeout time.Duration) {
}
func (c *TimeoutPacketConn) Close() error {
c.cancel(net.ErrClosed)
return c.PacketConn.Close()
}