SetDeadline implements net.Conn.
(t time.Time)
| 64 | |
| 65 | // SetDeadline implements net.Conn. |
| 66 | func (c *meteredConn) SetDeadline(t time.Time) error { |
| 67 | return c.Conn.SetDeadline(t) |
| 68 | } |
| 69 | |
| 70 | // SetReadDeadline implements net.Conn. |
| 71 | func (c *meteredConn) SetReadDeadline(t time.Time) error { |