]> Cypherpunks repositories - gostls13.git/commit
cgi: child support (e.g. Go CGI under Apache)
authorBrad Fitzpatrick <bradfitz@golang.org>
Tue, 8 Mar 2011 16:01:19 +0000 (08:01 -0800)
committerBrad Fitzpatrick <bradfitz@golang.org>
Tue, 8 Mar 2011 16:01:19 +0000 (08:01 -0800)
commitd64a18a27e13550606063ca970a5a004611d6881
tree8859a0c093283b7b37b73ea87c802bdd90e45bd4
parent8c76218f8994ffc93f2fa5b72f47d9c6f69ae982
cgi: child support (e.g. Go CGI under Apache)

The http/cgi package now supports both being
a CGI host or being a CGI child process.

R=rsc, adg, bradfitzwork
CC=golang-dev
https://golang.org/cl/4245070
src/pkg/http/cgi/Makefile
src/pkg/http/cgi/child.go [new file with mode: 0644]
src/pkg/http/cgi/child_test.go [new file with mode: 0644]
src/pkg/http/cgi/host.go [moved from src/pkg/http/cgi/cgi.go with 86% similarity]
src/pkg/http/cgi/host_test.go [moved from src/pkg/http/cgi/cgi_test.go with 92% similarity]
src/pkg/http/cgi/matryoshka_test.go [new file with mode: 0644]
src/pkg/http/cgi/testdata/test.cgi
src/pkg/http/server.go