From: Russ Cox Date: Fri, 12 Feb 2010 22:27:44 +0000 (-0800) Subject: http: clarify ServeHTTP return X-Git-Tag: weekly.2010-02-17~28 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=58d5d6f34f210f5b184b72f0ae4739525cc6e903;p=gostls13.git http: clarify ServeHTTP return Fixes #580. R=adg CC=golang-dev https://golang.org/cl/207086 --- diff --git a/src/pkg/http/server.go b/src/pkg/http/server.go index f9771f9b41..f0b608ddeb 100644 --- a/src/pkg/http/server.go +++ b/src/pkg/http/server.go @@ -32,6 +32,11 @@ var ( // Objects implementing the Handler interface can be // registered to serve a particular path or subtree // in the HTTP server. +// +// ServeHTTP should write reply headers and data to the Conn +// and then return. Returning signals that the request is finished +// and that the HTTP server can move on to the next request on +// the connection. type Handler interface { ServeHTTP(*Conn, *Request) }