Send remote address to go application.

This commit is contained in:
Max Romanov
2017-08-30 11:50:29 -07:00
parent 9791b09ce3
commit 9537821f3f
2 changed files with 6 additions and 0 deletions

View File

@@ -69,6 +69,11 @@ nxt_go_data_handler(nxt_port_msg_t *port_msg, size_t size)
h->version.start[5] - '0', h->version.start[5] - '0',
h->version.start[7] - '0'); h->version.start[7] - '0');
nxt_go_ctx_read_str(ctx, &ctx->r.remote);
if (ctx->r.remote.start != NULL) {
nxt_go_request_set_remote_addr(r, nxt_go_str(&ctx->r.remote));
}
nxt_go_ctx_read_str(ctx, &h->host); nxt_go_ctx_read_str(ctx, &h->host);
nxt_go_ctx_read_str(ctx, &h->cookie); nxt_go_ctx_read_str(ctx, &h->cookie);
nxt_go_ctx_read_str(ctx, &h->content_type); nxt_go_ctx_read_str(ctx, &h->content_type);

View File

@@ -2934,6 +2934,7 @@ nxt_go_prepare_msg(nxt_task_t *task, nxt_app_request_t *r, nxt_app_wmsg_t *wmsg)
} }
NXT_WRITE(&h->version); NXT_WRITE(&h->version);
NXT_WRITE(&r->remote);
NXT_WRITE(&h->host); NXT_WRITE(&h->host);
NXT_WRITE(&h->cookie); NXT_WRITE(&h->cookie);