(bodySize int)
| 2811 | } |
| 2812 | |
| 2813 | func createFixedBody(bodySize int) []byte { |
| 2814 | b := make([]byte, 0, bodySize) |
| 2815 | for i := range bodySize { |
| 2816 | b = append(b, byte(i%10)+'0') |
| 2817 | } |
| 2818 | return b |
| 2819 | } |
| 2820 | |
| 2821 | func createChunkedBody(body []byte, trailer map[string]string, withEnd bool) []byte { |
| 2822 | var b []byte |
no outgoing calls
no test coverage detected
searching dependent graphs…