Fix missing Upstream() for timeout debug conns

This commit is contained in:
世界 2023-12-26 17:28:48 +08:00
parent a6e8fa3019
commit 3ac055b755
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -38,6 +38,10 @@ func (c *SerialConn) ReadBuffer(buffer *buf.Buffer) error {
return c.ExtendedConn.ReadBuffer(buffer)
}
func (c *SerialConn) Upstream() any {
return c.ExtendedConn
}
type SerialPacketConn struct {
N.NetPacketConn
access sync.Mutex