Writing to chunkedWriter translates to writing in HTTP chunked Transfer Encoding wire format to the underlying Wire chunkedWriter.
| 195 | // Writing to chunkedWriter translates to writing in HTTP chunked Transfer |
| 196 | // Encoding wire format to the underlying Wire chunkedWriter. |
| 197 | type chunkedWriter struct { |
| 198 | Wire io.Writer |
| 199 | } |
| 200 | |
| 201 | // Write the contents of data as one chunk to Wire. |
| 202 | // NOTE: Note that the corresponding chunk-writing procedure in Conn.Write has |
nothing calls this directly
no outgoing calls
no test coverage detected