]> Cypherpunks repositories - gostls13.git/commit
net/mail: move RFC 2047 code to internal/mime
authorAlexandre Cesaro <alexandre.cesaro@gmail.com>
Tue, 23 Dec 2014 19:29:13 +0000 (20:29 +0100)
committerBrad Fitzpatrick <bradfitz@golang.org>
Mon, 23 Feb 2015 17:46:37 +0000 (17:46 +0000)
commit828129fdbc2d95ab8d8dfa637e0f7251924c8b8b
tree98216066d9b32bbb3d4388fc25626e4081ccd215
parent2f9c9e552d7cdcbf6aecbd4aee900cce39bcd2d9
net/mail: move RFC 2047 code to internal/mime

The code concerning quoted-printable encoding (RFC 2045) and its
variant for MIME headers (RFC 2047) is currently spread in
mime/multipart and net/mail. It is also not exported.

This commit is the second step to fix that issue. It moves the
RFC 2047 encoding and decoding functions from net/mail to
internal/mime. The exported API is unchanged.

Updates #4943

Change-Id: I5f58aa58e74bbe4ec91b2e9b8c81921338053b00
Reviewed-on: https://go-review.googlesource.com/2101
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
src/go/build/deps_test.go
src/internal/mime/header.go [new file with mode: 0644]
src/net/mail/message.go