Home | History | Annotate | Download | only in multipart

Lines Matching full:multipart

7 Package multipart implements MIME multipart parsing, as defined in RFC
10 The implementation is sufficient for HTTP (RFC 2388) and the multipart
13 package multipart
28 // A Part represents a single part in a multipart body.
85 // NewReader creates a new multipart Reader reading from r using the
163 return 0, fmt.Errorf("multipart: Part Read: %v", err)
207 // Reader is an iterator over parts in a MIME multipart body.
222 // NextPart returns the next part in the multipart or an error.
236 // multipart EOF so we need to return io.EOF instead of
241 return nil, fmt.Errorf("multipart: NextPart: %v", err)
260 return nil, fmt.Errorf("multipart: expecting a new Part; got line %q", string(line))
277 return nil, fmt.Errorf("multipart: unexpected line in Next(): %q", line)