(r io.ReadCloser)
| 45 | } |
| 46 | |
| 47 | func wrapH1ReqBody(r io.ReadCloser) wrappedH1ReqBody { |
| 48 | return wrappedH1ReqBody{ |
| 49 | r: r, |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | func (w wrappedH1ReqBody) Read(p []byte) (n int, err error) { |
| 54 | return w.r.Read(p) |
no outgoing calls
no test coverage detected