osxtest

Results 2 comments of osxtest

another way to solve this: ``` $ cat ip.txt 1.1.1.1 2.2.2.2 3.3.3.3 4.4.4.4 ``` ``` $ fofax -debug -q "$(cat ip.txt | xargs -n1 -I {} printf 'ip="{}" || '...

A naive modification could be to treat `MaxResponseBodySize` as `MaxResponseBodyReadSize`, and make changes at the [Response.ReadBody](https://github.com/valyala/fasthttp/blob/5f81476d7cf339624b5fec57a06ee96d3e27d9c2/http.go#L1456): ```go func (resp *Response) ReadBody(r *bufio.Reader, maxBodySize int) (err error) { bodyBuf := resp.bodyBuffer()...