aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/http/server.go
AgeCommit message (Expand)Author
2011-11-03net: renamingsRob Pike
2011-11-01src/pkg/[a-m]*: gofix -r error -force=errorRuss Cox
2011-10-18http, crypto/tls: fix read timeouts and closing.Adam Langley
2011-10-17http: fix panic when recovering from hijacked connection panicAndrew Gerrand
2011-10-14http: DoS protection: cap non-Handler Request.Body readsBrad Fitzpatrick
2011-10-03strings: implement a faster byte->string ReplacerBrad Fitzpatrick
2011-09-28http: don't send a 400 Bad Request after a client shutdownBrad Fitzpatrick
2011-09-19http: fix TLS handshake blocking server accept loopBrad Fitzpatrick
2011-08-25http: return 413 instead of 400 when the request body is too largeDave Cheney
2011-08-24http: on invalid request, send 400 responseBrad Fitzpatrick
2011-08-23http: delete error kludgeRuss Cox
2011-08-23http: add MaxBytesReader to limit request body sizeBrad Fitzpatrick
2011-08-17url: new packageRob Pike
2011-08-09http: configurable and default request header size limitBrad Fitzpatrick
2011-07-22http: clarify use of w.conn.body in Write when sniffing.David Symonds
2011-07-21http: fix chunking bug during content sniffingRuss Cox
2011-07-21http: disable sniffer for now.David Symonds
2011-07-21http: sniffing algorithm.David Symonds
2011-07-15http: fixes for sniffingRuss Cox
2011-07-15http: sniffing placeholderRuss Cox
2011-06-28strings.Split: make the default to split all.Rob Pike
2011-06-27http: respect Handlers setting Connection: close in their responseBrad Fitzpatrick
2011-06-27http: add StripPrefix handler wrapperBrad Fitzpatrick
2011-06-27http: do TLS handshake explicitly before copying TLS stateBrad Fitzpatrick
2011-06-20http: permit handlers to explicitly remove the Date headerBrad Fitzpatrick
2011-06-20http: add Server.ListenAndServeTLSBrad Fitzpatrick
2011-06-18http: fix documentation typoScott Lawrence
2011-06-16http: make Headers be source of truthBrad Fitzpatrick
2011-06-16http: use runtime/debug.Stack() to dump stack trace on panic.Rob Pike
2011-06-09http: fix regression permitting io.Copy on HEAD responseBrad Fitzpatrick
2011-06-03http: don't fail on accept hitting EMFILEBrad Fitzpatrick
2011-06-02http: catch panicsBrad Fitzpatrick
2011-05-25io, net, http: sendfile supportBrad Fitzpatrick
2011-05-11http: don't Clean query string in relative redirectsBrad Fitzpatrick
2011-04-28http: add Header.Write methodEvan Shaw
2011-04-28http: add MultipartForm, FormFile, and ParseMultipartForm to RequestAndrew Gerrand
2011-04-15http: handler timeout supportBrad Fitzpatrick
2011-04-14http: consume request bodies before replyingBrad Fitzpatrick
2011-04-13http: flesh out server Expect handling + testsBrad Fitzpatrick
2011-03-23http: don't chunk 304 responsesBrad Fitzpatrick
2011-03-12http: use Header.Del not empty Set(k, "")Brad Fitzpatrick
2011-03-10http: move RemoteAddr & UsingTLS from ResponseWriter to RequestBrad Fitzpatrick
2011-03-09http: add Flusher type; remove Flush from ResponseWriterBrad Fitzpatrick
2011-03-09http: change ResponseWriter.SetHeader(k,v) to Header() accessorBrad Fitzpatrick
2011-03-08cgi: child support (e.g. Go CGI under Apache)Brad Fitzpatrick
2011-03-07http: change Hijacker to return a net.ConnBrad Fitzpatrick
2011-03-07http: close after responding to HTTP/1.0 request without Connection: keep-aliveRuss Cox
2011-03-06http: add Hijacker type; remove Hijack from ResponseWriterBrad Fitzpatrick
2011-03-03http: allow handlers to send non-chunked responsesBrad Fitzpatrick
2011-02-22http: add pointer from Handle[Func] to ServeMux docsAndrew Gerrand