mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
18c7c67308
- pkg/useragent - pkg/units - pkg/ulimit - pkg/truncindex - pkg/timeoutconn - pkg/term - pkg/tarsum - pkg/tailfile - pkg/systemd - pkg/stringutils - pkg/stringid - pkg/streamformatter - pkg/sockets - pkg/signal - pkg/proxy - pkg/progressreader - pkg/pools - pkg/plugins - pkg/pidfile - pkg/parsers - pkg/parsers/filters - pkg/parsers/kernel - pkg/parsers/operatingsystem Signed-off-by: Vincent Demeester <vincent@sbr.pm>
28 lines
685 B
Go
28 lines
685 B
Go
// Package timeoutconn provides overridden net.Conn that supports deadline (timeout).
|
|
package timeoutconn
|
|
|
|
import (
|
|
"net"
|
|
"time"
|
|
)
|
|
|
|
// New creates a net.Conn with a timeout for every Read operation.
|
|
func New(netConn net.Conn, timeout time.Duration) net.Conn {
|
|
return &conn{netConn, timeout}
|
|
}
|
|
|
|
// A net.Conn that sets a deadline for every Read operation.
|
|
// FIXME was documented the deadline was on Write operation too but not implement
|
|
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)
|
|
}
|