Re: [go-nuts] Re: Reading http.Request.Body...

2016-10-11 Thread Edward Muller
There is also ReadAtLeast (https://golang.org/pkg/io/#ReadAtLeast) On Tue, Oct 11, 2016 at 3:13 PM forfader wrote: > Thank you. I figured there was such a function. Just couldn't find it. > > Michael- > > > On Tuesday, October 11, 2016 at 2:31:41 PM UTC-7, forfader wrote: >

[go-nuts] Re: Reading http.Request.Body...

2016-10-11 Thread forfader
Thank you. I figured there was such a function. Just couldn't find it. Michael- On Tuesday, October 11, 2016 at 2:31:41 PM UTC-7, forfader wrote: > > I'm reading the Body of an HTTP request. In my handler I want to chunk the > response body up into fixed size blocks. I doing this using the