summaryrefslogtreecommitdiffhomepage
path: root/src/python
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/python
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/python')
-rw-r--r--src/python/nxt_python_asgi.c2
-rw-r--r--src/python/nxt_python_wsgi.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/python/nxt_python_asgi.c b/src/python/nxt_python_asgi.c
index 4ad0857d..40ea5e24 100644
--- a/src/python/nxt_python_asgi.c
+++ b/src/python/nxt_python_asgi.c
@@ -674,7 +674,7 @@ nxt_py_asgi_create_http_scope(nxt_unit_request_info_t *req)
SET_ITEM(scope, client, v)
Py_DECREF(v);
- v = nxt_py_asgi_create_address(&r->local, r->local_length, 80);
+ v = nxt_py_asgi_create_address(&r->local_addr, r->local_addr_length, 80);
if (nxt_slow_path(v == NULL)) {
nxt_unit_req_alert(req, "Python failed to create 'server' pair");
goto fail;
diff --git a/src/python/nxt_python_wsgi.c b/src/python/nxt_python_wsgi.c
index 87dcfaa2..3fb6ac3b 100644
--- a/src/python/nxt_python_wsgi.c
+++ b/src/python/nxt_python_wsgi.c
@@ -609,8 +609,8 @@ nxt_python_get_environ(nxt_python_ctx_t *pctx)
RC(nxt_python_add_sptr(pctx, nxt_py_remote_addr_str, &r->remote,
r->remote_length));
- RC(nxt_python_add_sptr(pctx, nxt_py_server_addr_str, &r->local,
- r->local_length));
+ RC(nxt_python_add_sptr(pctx, nxt_py_server_addr_str, &r->local_addr,
+ r->local_addr_length));
if (r->tls) {
RC(nxt_python_add_obj(pctx, nxt_py_wsgi_uri_scheme_str,