comparison src/http/ngx_http_request.c @ 1658:13f8dec720b5

proxy_pass variables support
author Igor Sysoev <igor@sysoev.ru>
date Tue, 27 Nov 2007 13:34:13 +0000
parents 7a9b44e35c53
children 447765dc6d67
comparison
equal deleted inserted replaced
1657:6a8a066adc98 1658:13f8dec720b5
2647 uri_separator = ":"; 2647 uri_separator = ":";
2648 } 2648 }
2649 #endif 2649 #endif
2650 2650
2651 p = ngx_snprintf(buf, len, ", upstream: \"%V%V%s%V\"", 2651 p = ngx_snprintf(buf, len, ", upstream: \"%V%V%s%V\"",
2652 &u->conf->schema, u->peer.name, 2652 &u->schema, u->peer.name,
2653 uri_separator, &u->uri); 2653 uri_separator, &u->uri);
2654 len -= p - buf; 2654 len -= p - buf;
2655 buf = p; 2655 buf = p;
2656 } 2656 }
2657 2657