| 186 | } |
| 187 | |
| 188 | type httpResponse struct { |
| 189 | vm *VM |
| 190 | Status int |
| 191 | Headers *httpHeaders |
| 192 | Body ReadCloser |
| 193 | } |
| 194 | |
| 195 | func (r *httpResponse) BodySize() int64 { |
| 196 | return utils.ToInt64(r.Headers.Get("Content-Length"), -1) |
nothing calls this directly
no outgoing calls
no test coverage detected