summaryrefslogtreecommitdiffhomepage
path: root/src/nodejs
diff options
context:
space:
mode:
authorAndrew Clayton <a.clayton@nginx.com>2022-09-29 20:59:43 +0100
committerAndrew Clayton <andrew@digital-domain.net>2022-10-03 14:32:28 +0100
commitb00983369be5f356280168b4c5d600bd7d614c60 (patch)
tree33c02fbe371bed9e902cfa79d4dc43381365a705 /src/nodejs
parent57fc9201cb91e3d8901a64e3daaaf31684ee5bf5 (diff)
downloadunit-b00983369be5f356280168b4c5d600bd7d614c60.tar.gz
unit-b00983369be5f356280168b4c5d600bd7d614c60.tar.bz2
Renamed a couple of members of nxt_unit_request_t.
This is a preparatory patch that renames the 'local' and 'local_length' members of the nxt_unit_request_t structure to 'local_addr' and 'local_addr_length' in preparation for the adding of 'local_port' and 'local_port_length' members. Suggested-by: Zhidao HONG <z.hong@f5.com> Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'src/nodejs')
-rw-r--r--src/nodejs/unit-http/unit.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nodejs/unit-http/unit.cpp b/src/nodejs/unit-http/unit.cpp
index ee5dc46f..7912d0ac 100644
--- a/src/nodejs/unit-http/unit.cpp
+++ b/src/nodejs/unit-http/unit.cpp
@@ -657,7 +657,8 @@ Unit::create_socket(napi_value server_obj, nxt_unit_request_info_t *req)
req_data->sock_ref = wrap(res, req, sock_destroy);
set_named_property(res, "remoteAddress", r->remote, r->remote_length);
- set_named_property(res, "localAddress", r->local, r->local_length);
+ set_named_property(res, "localAddress", r->local_addr,
+ r->local_addr_length);
return res;
}