(b []byte)
| 189 | } |
| 190 | |
| 191 | func (srw *syncResponseWriter) Write(b []byte) (int, error) { |
| 192 | srw.mu.Lock() |
| 193 | defer srw.mu.Unlock() |
| 194 | return srw.body.Write(b) |
| 195 | } |
| 196 | |
| 197 | func (srw *syncResponseWriter) Read(b []byte) (int, error) { |
| 198 | srw.mu.Lock() |