diff options
Diffstat (limited to 'src/go/unit/nxt_go_lib.c')
-rw-r--r-- | src/go/unit/nxt_go_lib.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/go/unit/nxt_go_lib.c b/src/go/unit/nxt_go_lib.c index 4455e783..eeb7aa50 100644 --- a/src/go/unit/nxt_go_lib.c +++ b/src/go/unit/nxt_go_lib.c @@ -31,6 +31,23 @@ nxt_go_response_write(nxt_go_request_t r, uintptr_t buf, size_t len) } +void +nxt_go_response_flush(nxt_go_request_t r) +{ + nxt_go_run_ctx_t *ctx; + + if (nxt_slow_path(r == 0)) { + return; + } + + ctx = (nxt_go_run_ctx_t *) r; + + if (ctx->nwbuf > 0) { + nxt_go_ctx_flush(ctx, 0); + } +} + + int nxt_go_request_read(nxt_go_request_t r, uintptr_t dst, size_t dst_len) { |