summaryrefslogtreecommitdiff
path: root/src/pkg/http/Makefile
diff options
context:
space:
mode:
authorPetar Maymounkov <petarm@gmail.com>2010-01-28 15:14:54 -0800
committerPetar Maymounkov <petarm@gmail.com>2010-01-28 15:14:54 -0800
commitcffa5c3529a4df2e00cc353b78b151af2412293f (patch)
treed4cfac45bf00165fd1570d1687fd99aa2ca1c69c /src/pkg/http/Makefile
parentc04ab7b3f78f5fb138c5a9ed0ae3cb2e5e99d4f9 (diff)
downloadgolang-cffa5c3529a4df2e00cc353b78b151af2412293f.tar.gz
http: add lexing functions
In particular, add field-value tokenizer which respects quoting rules. The code is intended for use in tokenizing the Transfer-Encoding and Trailer fields. The lexing function is not connected to the main parsing code yet (in the next CL). R=rsc CC=golang-dev http://codereview.appspot.com/190085 Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'src/pkg/http/Makefile')
-rw-r--r--src/pkg/http/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pkg/http/Makefile b/src/pkg/http/Makefile
index 7654de807..8a4562122 100644
--- a/src/pkg/http/Makefile
+++ b/src/pkg/http/Makefile
@@ -9,6 +9,7 @@ GOFILES=\
chunked.go\
client.go\
fs.go\
+ lex.go\
request.go\
response.go\
server.go\