mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
844538142d
Signed-off-by: Antonio Murdaca <me@runcom.ninja>
25 lines
458 B
Go
25 lines
458 B
Go
package timeoutconn
|
|
|
|
import (
|
|
"net"
|
|
"time"
|
|
)
|
|
|
|
func New(netConn net.Conn, timeout time.Duration) net.Conn {
|
|
return &conn{netConn, timeout}
|
|
}
|
|
|
|
// A net.Conn that sets a deadline for every Read or Write operation
|
|
type conn struct {
|
|
net.Conn
|
|
timeout time.Duration
|
|
}
|
|
|
|
func (c *conn) Read(b []byte) (int, error) {
|
|
if c.timeout > 0 {
|
|
if err := c.Conn.SetReadDeadline(time.Now().Add(c.timeout)); err != nil {
|
|
return 0, err
|
|
}
|
|
}
|
|
return c.Conn.Read(b)
|
|
}
|