summaryrefslogtreecommitdiffhomepage
path: root/src/go/unit/response.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/go/unit/response.go')
-rw-r--r--src/go/unit/response.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/go/unit/response.go b/src/go/unit/response.go
index 44694011..801a52e5 100644
--- a/src/go/unit/response.go
+++ b/src/go/unit/response.go
@@ -65,3 +65,11 @@ func (r *response) WriteHeader(code int) {
r.Write([]byte("\r\n"))
}
+
+func (r *response) Flush() {
+ if !r.headerSent {
+ r.WriteHeader(http.StatusOK)
+ }
+
+ C.nxt_go_response_flush(r.c_req)
+}