Clarify comment

This commit is contained in:
Ask Bjørn Hansen 2012-08-23 20:21:33 -07:00
parent 6f7aad15d8
commit ffb28d97f9
1 changed files with 2 additions and 1 deletions

View File

@ -315,6 +315,7 @@ func (c *conn) close() {
// Serve a new connection.
func (c *conn) serve() {
// for block to make it easy to break out to close the tcp connection
for {
// Request has been read in ServeUDP or ServeTCP
w := new(response)
@ -343,7 +344,7 @@ func (c *conn) serve() {
if c.hijacked {
return
}
break // TODO(mg) Why is this a loop anyway?
break
}
if c._TCP != nil {
c.close() // Listen and Serve is closed then