]> Cypherpunks repositories - gostls13.git/commit
net/textproto: new package, with example net/dict
authorRuss Cox <rsc@golang.org>
Sat, 7 Aug 2010 00:37:45 +0000 (17:37 -0700)
committerRuss Cox <rsc@golang.org>
Sat, 7 Aug 2010 00:37:45 +0000 (17:37 -0700)
commit844a86317d509ca49e4723deb99dfd05e5dc6784
treedcf9e7b1da9f9395d4e5f67653cd7feb5d732a41
parent18063d46868b28c7cac1e2a08f6f07c28f955b36
net/textproto: new package, with example net/dict

Generic text-based network protcol library for SMTP-like protocols.
HTTP and NNTP should be changed to use this package,
and I expect that SMTP and POP3 will be able to use it too.

R=cemeyer, nigeltao_golang, r
CC=golang-dev, petar-m
https://golang.org/cl/889041
src/pkg/Makefile
src/pkg/net/dict/Makefile [new file with mode: 0644]
src/pkg/net/dict/dict.go [new file with mode: 0644]
src/pkg/net/textproto/Makefile [new file with mode: 0644]
src/pkg/net/textproto/pipeline.go [new file with mode: 0644]
src/pkg/net/textproto/reader.go [new file with mode: 0644]
src/pkg/net/textproto/reader_test.go [new file with mode: 0644]
src/pkg/net/textproto/textproto.go [new file with mode: 0644]
src/pkg/net/textproto/writer.go [new file with mode: 0644]
src/pkg/net/textproto/writer_test.go [new file with mode: 0644]