(p []byte)
| 937 | } |
| 938 | |
| 939 | func (bl bodyLocked) Read(p []byte) (n int, err error) { |
| 940 | if bl.b.closed { |
| 941 | return 0, http.ErrBodyReadAfterClose |
| 942 | } |
| 943 | return bl.b.readLocked(p) |
| 944 | } |
| 945 | |
| 946 | var httplaxContentLength = godebug.New("httplaxcontentlength") |
| 947 |
nothing calls this directly
no test coverage detected