Fixed processing of SERVER_NAME after 77aad2c142a0.
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.
This commit is contained in:
@@ -19,12 +19,12 @@ struct nxt_unit_request_s {
|
||||
uint8_t version_length;
|
||||
uint8_t remote_length;
|
||||
uint8_t local_length;
|
||||
uint32_t server_name_length;
|
||||
uint32_t target_length;
|
||||
uint32_t path_length;
|
||||
uint32_t query_length;
|
||||
uint32_t fields_count;
|
||||
|
||||
uint32_t host_field;
|
||||
uint32_t content_length_field;
|
||||
uint32_t content_type_field;
|
||||
uint32_t cookie_field;
|
||||
@@ -35,6 +35,7 @@ struct nxt_unit_request_s {
|
||||
nxt_unit_sptr_t version;
|
||||
nxt_unit_sptr_t remote;
|
||||
nxt_unit_sptr_t local;
|
||||
nxt_unit_sptr_t server_name;
|
||||
nxt_unit_sptr_t target;
|
||||
nxt_unit_sptr_t path;
|
||||
nxt_unit_sptr_t query;
|
||||
|
||||
Reference in New Issue
Block a user