comparison src/http/modules/perl/ngx_http_perl_module.h @ 7532:975d7ab37b39

Perl: expect escaped URIs in $r->internal_redirect(). Similarly to the change in 5491:74bfa803a5aa (1.5.9), we should accept properly escaped URIs and unescape them as needed, else it is not possible to handle URIs with question marks.
author Maxim Dounin <mdounin@mdounin.ru>
date Fri, 12 Jul 2019 15:39:26 +0300
parents fd9252844ec1
children
comparison
equal deleted inserted replaced
7531:ede052c67512 7532:975d7ab37b39
23 typedef struct { 23 typedef struct {
24 ngx_http_request_t *request; 24 ngx_http_request_t *request;
25 25
26 ngx_str_t filename; 26 ngx_str_t filename;
27 ngx_str_t redirect_uri; 27 ngx_str_t redirect_uri;
28 ngx_str_t redirect_args;
29 28
30 SV *next; 29 SV *next;
31 30
32 ngx_int_t status; 31 ngx_int_t status;
33 32