SetReadTimeout sets the read timeout on the underlying port.
(d time.Duration)
| 105 | |
| 106 | // SetReadTimeout sets the read timeout on the underlying port. |
| 107 | func (m *Mac) SetReadTimeout(d time.Duration) error { |
| 108 | return m.port.SetReadTimeout(d) |
| 109 | } |
| 110 | |
| 111 | // WrapPort installs a wrapping interceptor around the underlying port. The |
| 112 | // callback receives the current port and returns a wrapped version that will |
nothing calls this directly
no test coverage detected