summaryrefslogtreecommitdiffhomepage
path: root/src/java/nxt_jni_Request.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2025-07-25Set SERVER_PORT appropriatelyAndrew Clayton1-25/+3
The Perl, PHP, Python, Ruby & Java language modules all hard code SERVER_PORT to "80". Adjust them to bring them in line with the wasm language module which uses r->local_port (I.e. the port unit accepted the connection on). Closes: https://github.com/nginx/unit/issues/761 Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
2022-10-03Renamed a couple of members of nxt_unit_request_t.Andrew Clayton1-10/+10
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>
2019-09-05Java: introducing websocket support.Max Romanov1-0/+144
2019-05-30Java: fixing request scheme using 'tls' flag.Max Romanov1-1/+5
2019-03-21Adjusting request schema value according to connection tls state.Max Romanov1-0/+17
This closes #223 issue on GitHub.
2019-02-28Introducing Java Servlet Container beta.Max Romanov1-0/+658