Merge pull request #13 from widdma/patch-1

Only send EOF in writable sessions
This commit is contained in:
Iwasaki Yudai 2015-08-17 20:53:41 -07:00
commit 37dbf00503

View File

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