Don't send EOT

It was a bug that sending EOT when closing connection.
This commit is contained in:
Iwasaki Yudai 2015-08-21 12:34:15 +09:00
parent 10d0bd8a17
commit b4b9435b58

View File

@ -216,10 +216,6 @@ func (app *App) generateHandler() func(w http.ResponseWriter, r *http.Request) {
go func() {
<-exit
if app.PermitWrite {
fio.Write([]byte{4})
}
fio.Close()
conn.Close()
log.Printf("Connection closed: %s", r.RemoteAddr)
}()