From 844a86317d509ca49e4723deb99dfd05e5dc6784 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Fri, 6 Aug 2010 17:37:45 -0700 Subject: 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 | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/pkg/Makefile') diff --git a/src/pkg/Makefile b/src/pkg/Makefile index 5989e888b2..c410697abf 100644 --- a/src/pkg/Makefile +++ b/src/pkg/Makefile @@ -95,6 +95,8 @@ DIRS=\ mime\ mime/multipart\ net\ + net/dict\ + net/textproto\ netchan\ nntp\ once\ @@ -139,6 +141,7 @@ NOTEST=\ http/pprof\ image\ image/jpeg\ + net/dict\ rand\ runtime\ runtime/pprof\ -- cgit v1.3-5-g9baa