summaryrefslogtreecommitdiffhomepage
path: root/src/go/unit/nxt_cgo_lib.c (follow)
AgeCommit message (Collapse)AuthorFilesLines
2019-03-21Adjusting request schema value according to connection tls state.Max Romanov1-0/+4
This closes #223 issue on GitHub.
2019-02-27Fixed processing of SERVER_NAME after 77aad2c142a0.Valentin Bartenev1-5/+2
Previously, the nxt_router_prepare_msg() function expected server host among other headers unmodified. It's not true anymore since normalization of the Host header has been introduced in 77aad2c142a0. The nxt_unit_split_host() function was removed. It didn't work correctly with IPv6 literals. Anyway, after 77aad2c142a0 the port splitting is done in router while Host header processing.
2018-10-02Go: fixing typo in log messages.Max Romanov1-1/+1
2018-08-06Unit application library.Max Romanov1-0/+207
Library now used in all language modules. Old 'nxt_app_*' code removed. See src/test/nxt_unit_app_test.c for usage sample.