url               515 core/ngx_inet.c     p = u->url.data;
url               542 core/ngx_inet.c     len = u->url.len;
url               543 core/ngx_inet.c     path = u->url.data;
url               598 core/ngx_inet.c     u->addrs[0].name.data = u->url.data;
url               627 core/ngx_inet.c     host = u->url.data;
url               629 core/ngx_inet.c     last = host + u->url.len;
url               799 core/ngx_inet.c     host = u->url.data + 1;
url               801 core/ngx_inet.c     last = u->url.data + u->url.len;
url                77 core/ngx_inet.h     ngx_str_t                 url;
url               616 http/modules/ngx_http_fastcgi_module.c     ngx_url_t             url;
url               619 http/modules/ngx_http_fastcgi_module.c     ngx_memzero(&url, sizeof(ngx_url_t));
url               621 http/modules/ngx_http_fastcgi_module.c     if (ngx_http_script_run(r, &url.url, flcf->fastcgi_lengths->elts, 0,
url               628 http/modules/ngx_http_fastcgi_module.c     url.no_resolve = 1;
url               630 http/modules/ngx_http_fastcgi_module.c     if (ngx_parse_url(r->pool, &url) != NGX_OK) {
url               631 http/modules/ngx_http_fastcgi_module.c          if (url.err) {
url               633 http/modules/ngx_http_fastcgi_module.c                           "%s in upstream \"%V\"", url.err, &url.url);
url               646 http/modules/ngx_http_fastcgi_module.c     if (url.addrs && url.addrs[0].sockaddr) {
url               647 http/modules/ngx_http_fastcgi_module.c         u->resolved->sockaddr = url.addrs[0].sockaddr;
url               648 http/modules/ngx_http_fastcgi_module.c         u->resolved->socklen = url.addrs[0].socklen;
url               650 http/modules/ngx_http_fastcgi_module.c         u->resolved->host = url.addrs[0].name;
url               653 http/modules/ngx_http_fastcgi_module.c         u->resolved->host = url.host;
url               654 http/modules/ngx_http_fastcgi_module.c         u->resolved->port = url.port;
url               655 http/modules/ngx_http_fastcgi_module.c         u->resolved->no_port = url.no_port;
url              2610 http/modules/ngx_http_fastcgi_module.c     ngx_str_t                  *value, *url;
url              2629 http/modules/ngx_http_fastcgi_module.c     url = &value[1];
url              2631 http/modules/ngx_http_fastcgi_module.c     n = ngx_http_script_variables_count(url);
url              2638 http/modules/ngx_http_fastcgi_module.c         sc.source = url;
url              2654 http/modules/ngx_http_fastcgi_module.c     u.url = value[1];
url               600 http/modules/ngx_http_memcached_module.c     u.url = value[1];
url                64 http/modules/ngx_http_proxy_module.c     ngx_str_t                      url;
url               635 http/modules/ngx_http_proxy_module.c     ngx_url_t             url;
url               671 http/modules/ngx_http_proxy_module.c     ngx_memzero(&url, sizeof(ngx_url_t));
url               673 http/modules/ngx_http_proxy_module.c     url.url.len = proxy.len - add;
url               674 http/modules/ngx_http_proxy_module.c     url.url.data = proxy.data + add;
url               675 http/modules/ngx_http_proxy_module.c     url.default_port = port;
url               676 http/modules/ngx_http_proxy_module.c     url.uri_part = 1;
url               677 http/modules/ngx_http_proxy_module.c     url.no_resolve = 1;
url               679 http/modules/ngx_http_proxy_module.c     if (ngx_parse_url(r->pool, &url) != NGX_OK) {
url               680 http/modules/ngx_http_proxy_module.c         if (url.err) {
url               682 http/modules/ngx_http_proxy_module.c                           "%s in upstream \"%V\"", url.err, &url.url);
url               688 http/modules/ngx_http_proxy_module.c     if (url.uri.len) {
url               689 http/modules/ngx_http_proxy_module.c         if (url.uri.data[0] == '?') {
url               690 http/modules/ngx_http_proxy_module.c             p = ngx_pnalloc(r->pool, url.uri.len + 1);
url               696 http/modules/ngx_http_proxy_module.c             ngx_memcpy(p, url.uri.data, url.uri.len);
url               698 http/modules/ngx_http_proxy_module.c             url.uri.len++;
url               699 http/modules/ngx_http_proxy_module.c             url.uri.data = p - 1;
url               703 http/modules/ngx_http_proxy_module.c         url.uri = r->unparsed_uri;
url               708 http/modules/ngx_http_proxy_module.c     ngx_http_proxy_set_vars(&url, &ctx->vars);
url               715 http/modules/ngx_http_proxy_module.c     if (url.addrs && url.addrs[0].sockaddr) {
url               716 http/modules/ngx_http_proxy_module.c         u->resolved->sockaddr = url.addrs[0].sockaddr;
url               717 http/modules/ngx_http_proxy_module.c         u->resolved->socklen = url.addrs[0].socklen;
url               719 http/modules/ngx_http_proxy_module.c         u->resolved->host = url.addrs[0].name;
url               722 http/modules/ngx_http_proxy_module.c         u->resolved->host = url.host;
url               723 http/modules/ngx_http_proxy_module.c         u->resolved->port = (in_port_t) (url.no_port ? port : url.port);
url               724 http/modules/ngx_http_proxy_module.c         u->resolved->no_port = url.no_port;
url              1965 http/modules/ngx_http_proxy_module.c         if (conf->redirects == NULL && conf->url.data) {
url              1981 http/modules/ngx_http_proxy_module.c                 pr->redirect = conf->url;
url              1985 http/modules/ngx_http_proxy_module.c                 pr->redirect.len = conf->url.len + sizeof("/") - 1;
url              1994 http/modules/ngx_http_proxy_module.c                 p = ngx_cpymem(p, conf->url.data, conf->url.len);
url              2348 http/modules/ngx_http_proxy_module.c     ngx_str_t                  *value, *url;
url              2368 http/modules/ngx_http_proxy_module.c     url = &value[1];
url              2370 http/modules/ngx_http_proxy_module.c     n = ngx_http_script_variables_count(url);
url              2377 http/modules/ngx_http_proxy_module.c         sc.source = url;
url              2397 http/modules/ngx_http_proxy_module.c     if (ngx_strncasecmp(url->data, (u_char *) "http://", 7) == 0) {
url              2401 http/modules/ngx_http_proxy_module.c     } else if (ngx_strncasecmp(url->data, (u_char *) "https://", 8) == 0) {
url              2423 http/modules/ngx_http_proxy_module.c     u.url.len = url->len - add;
url              2424 http/modules/ngx_http_proxy_module.c     u.url.data = url->data + add;
url              2435 http/modules/ngx_http_proxy_module.c     plcf->vars.schema.data = url->data;
url              2461 http/modules/ngx_http_proxy_module.c     plcf->url = *url;
url              2527 http/modules/ngx_http_proxy_module.c         if (plcf->url.data == NULL) {
url              2537 http/modules/ngx_http_proxy_module.c             pr->redirect = plcf->url;
url              2541 http/modules/ngx_http_proxy_module.c             pr->redirect.len = plcf->url.len + sizeof("/") - 1;
url              2550 http/modules/ngx_http_proxy_module.c             p = ngx_cpymem(p, plcf->url.data, plcf->url.len);
url               438 http/modules/ngx_http_scgi_module.c     ngx_url_t             url;
url               441 http/modules/ngx_http_scgi_module.c     ngx_memzero(&url, sizeof(ngx_url_t));
url               443 http/modules/ngx_http_scgi_module.c     if (ngx_http_script_run(r, &url.url, scf->scgi_lengths->elts, 0,
url               450 http/modules/ngx_http_scgi_module.c     url.no_resolve = 1;
url               452 http/modules/ngx_http_scgi_module.c     if (ngx_parse_url(r->pool, &url) != NGX_OK) {
url               453 http/modules/ngx_http_scgi_module.c         if (url.err) {
url               455 http/modules/ngx_http_scgi_module.c                           "%s in upstream \"%V\"", url.err, &url.url);
url               468 http/modules/ngx_http_scgi_module.c     if (url.addrs && url.addrs[0].sockaddr) {
url               469 http/modules/ngx_http_scgi_module.c         u->resolved->sockaddr = url.addrs[0].sockaddr;
url               470 http/modules/ngx_http_scgi_module.c         u->resolved->socklen = url.addrs[0].socklen;
url               472 http/modules/ngx_http_scgi_module.c         u->resolved->host = url.addrs[0].name;
url               475 http/modules/ngx_http_scgi_module.c         u->resolved->host = url.host;
url               476 http/modules/ngx_http_scgi_module.c         u->resolved->port = url.port;
url               477 http/modules/ngx_http_scgi_module.c         u->resolved->no_port = url.no_port;
url              1485 http/modules/ngx_http_scgi_module.c     ngx_str_t                  *value, *url;
url              1499 http/modules/ngx_http_scgi_module.c     url = &value[1];
url              1501 http/modules/ngx_http_scgi_module.c     n = ngx_http_script_variables_count(url);
url              1508 http/modules/ngx_http_scgi_module.c         sc.source = url;
url              1524 http/modules/ngx_http_scgi_module.c     u.url = value[1];
url               471 http/modules/ngx_http_uwsgi_module.c     ngx_url_t             url;
url               474 http/modules/ngx_http_uwsgi_module.c     ngx_memzero(&url, sizeof(ngx_url_t));
url               476 http/modules/ngx_http_uwsgi_module.c     if (ngx_http_script_run(r, &url.url, uwcf->uwsgi_lengths->elts, 0,
url               483 http/modules/ngx_http_uwsgi_module.c     url.no_resolve = 1;
url               485 http/modules/ngx_http_uwsgi_module.c     if (ngx_parse_url(r->pool, &url) != NGX_OK) {
url               486 http/modules/ngx_http_uwsgi_module.c         if (url.err) {
url               488 http/modules/ngx_http_uwsgi_module.c                           "%s in upstream \"%V\"", url.err, &url.url);
url               501 http/modules/ngx_http_uwsgi_module.c     if (url.addrs && url.addrs[0].sockaddr) {
url               502 http/modules/ngx_http_uwsgi_module.c         u->resolved->sockaddr = url.addrs[0].sockaddr;
url               503 http/modules/ngx_http_uwsgi_module.c         u->resolved->socklen = url.addrs[0].socklen;
url               505 http/modules/ngx_http_uwsgi_module.c         u->resolved->host = url.addrs[0].name;
url               508 http/modules/ngx_http_uwsgi_module.c         u->resolved->host = url.host;
url               509 http/modules/ngx_http_uwsgi_module.c         u->resolved->port = url.port;
url               510 http/modules/ngx_http_uwsgi_module.c         u->resolved->no_port = url.no_port;
url              1536 http/modules/ngx_http_uwsgi_module.c     ngx_str_t                  *value, *url;
url              1550 http/modules/ngx_http_uwsgi_module.c     url = &value[1];
url              1552 http/modules/ngx_http_uwsgi_module.c     n = ngx_http_script_variables_count(url);
url              1559 http/modules/ngx_http_uwsgi_module.c         sc.source = url;
url              1575 http/modules/ngx_http_uwsgi_module.c     u.url = value[1];
url              3446 http/ngx_http_core_module.c     u.url = value[1];
url              3454 http/ngx_http_core_module.c                                u.err, &u.url);
url              4082 http/ngx_http_upstream.c     u.url = value[1];
url              4088 http/ngx_http_upstream.c                                "%s in upstream \"%V\"", u.err, &u.url);
url              4203 http/ngx_http_upstream.c                                    "%s in upstream \"%V\"", u->err, &u->url);
url              1387 mail/ngx_mail_auth_http_module.c     u.url = value[1];
url              1392 mail/ngx_mail_auth_http_module.c     if (ngx_strncmp(u.url.data, "http://", 7) == 0) {
url              1393 mail/ngx_mail_auth_http_module.c         u.url.len -= 7;
url              1394 mail/ngx_mail_auth_http_module.c         u.url.data += 7;
url              1400 mail/ngx_mail_auth_http_module.c                                "%s in auth_http \"%V\"", u.err, &u.url);
url               300 mail/ngx_mail_core_module.c     u.url = value[1];
url               307 mail/ngx_mail_core_module.c                                u.err, &u.url);
url               353 mail/ngx_mail_core_module.c                            "duplicate \"%V\" address and port pair", &u.url);