aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/http/request.go
AgeCommit message (Expand)Author
2011-11-03net: renamingsRob Pike
2011-11-01src/pkg/[a-m]*: gofix -r error -force=errorRuss Cox
2011-10-24http: add package commentBrad Fitzpatrick
2011-10-14http: RoundTrippers shouldn't mutate RequestBrad Fitzpatrick
2011-10-12http: remove Request.RawURLBrad Fitzpatrick
2011-09-19http: prevent DumpRequest from adding implicit headersBrad Fitzpatrick
2011-09-15http: MaxBytesReader doc cleanupsBrad Fitzpatrick
2011-09-15http: fix WriteProxy documentationBrad Fitzpatrick
2011-08-23http: add MaxBytesReader to limit request body sizeBrad Fitzpatrick
2011-08-18mime: ParseMediaType returns os.Error now, not a nil mapBrad Fitzpatrick
2011-08-18http: remove a TODO due to new behavior of nil mapsRob Pike
2011-08-17url: new packageRob Pike
2011-08-10http: fix ParseMultipartForm after MultipartReader errorBrad Fitzpatrick
2011-07-27container/vector: removed some uses of container/vector in other pkgsJohn Asmuth
2011-07-21undo CL 4808044 / 1bd754e69ce7Russ Cox
2011-07-21http: do not parse req.URL for CONNECTYasuhiro Matsumoto
2011-06-29http: make NewChunkedReader publicAndrew Balholm
2011-06-28strings.Split: make the default to split all.Rob Pike
2011-06-24http: better handling of 0-length Request.BodyBrad Fitzpatrick
2011-06-23http: buffer Request.WriteBrad Fitzpatrick
2011-06-22os.Error API: don't export os.ErrorString, use os.NewError consistentlyRobert Griesemer
2011-06-16http: make Headers be source of truthBrad Fitzpatrick
2011-06-16mime/multipart: convert Reader from interface to structBrad Fitzpatrick
2011-06-08http: fix handling of 0-lengthed http requestsBrad Fitzpatrick
2011-06-08http: change most map[string][]string types to new Values typeBrad Fitzpatrick
2011-05-31http: have client set Content-Length when possibleBrad Fitzpatrick
2011-05-25encoding/base64: add DecodeString and EncodeToStringBrad Fitzpatrick
2011-05-20http: include Host header in requests, even with proxiesBrad Fitzpatrick
2011-05-13http: add Request.SetBasicAuth methodBrad Fitzpatrick
2011-05-03http: fix FormFile nil pointer dereference on missing multipart formAndrew Gerrand
2011-04-28http: add Header.Write methodEvan Shaw
2011-04-28http: add MultipartForm, FormFile, and ParseMultipartForm to RequestAndrew Gerrand
2011-04-27http: put a limit on POST sizeBrad Fitzpatrick
2011-04-21http: clarify docs on Request HTTP versionBrad Fitzpatrick
2011-04-20src/pkg: make package doc comments consistently start with "Package foo".Nigel Tao
2011-04-14http: add NewRequest helperBrad Fitzpatrick
2011-03-10http: move RemoteAddr & UsingTLS from ResponseWriter to RequestBrad Fitzpatrick
2011-03-06http: use Header type consistentlyRuss Cox
2011-03-06http: add cookie supportPetar Maymounkov
2011-03-05http: fix, use WriteProxyRuss Cox
2011-03-02http: give ParseHTTPVersion a real example.David Symonds
2011-03-01http: export parseHTTPVersion.David Symonds
2011-02-23http: introduce Header type, implement with net/textprotoPetar Maymounkov
2011-02-17http: send full URL in proxy requestsRuss Cox
2011-01-14http: fix scheme-relative URL parsing; add ParseRequestURLBrad Fitzpatrick
2010-11-01strings: ContainsBrad Fitzpatrick
2010-10-06http: return the correct error if a header line is too long.Stephen Ma
2010-09-27http: support HTTP/1.0 Keep-AliveBrad Fitzpatrick
2010-09-27http: correct escaping of different parts of URLRuss Cox
2010-09-22http: don't always escape all reserved chars (fix build)Andrew Gerrand