Lines Matching refs:uds_path
1505 if (!(*worker->s->uds_path) || !p) {
1509 return apr_pstrcat(p, "unix:", worker->s->uds_path, "|", worker->s->name, NULL);
1762 if (PROXY_STRNCPY(wshared->uds_path, sockpath) != APR_SUCCESS) {
1768 *wshared->uds_path = '\0';
1980 * were passed a UDS url (eg: from mod_proxy) and adjust uds_path
1998 apr_table_setn(r->notes, "uds_path", sockpath);
2248 const char *uds_path;
2293 uds_path = (*worker->s->uds_path ? worker->s->uds_path : apr_table_get(r->notes, "uds_path"));
2294 if (uds_path) {
2295 if (conn->uds_path == NULL) {
2297 conn->uds_path = apr_pstrdup(conn->pool, uds_path);
2299 if (conn->uds_path) {
2302 uri->scheme, conn->uds_path);
2308 uri->scheme, uds_path);
2648 const char *uds_path,
2667 pathlen = strlen(uds_path);
2671 memcpy(sa->sun_path, uds_path, pathlen + 1);
2719 while ((backend_addr || conn->uds_path) && !connected) {
2721 if (conn->uds_path)
2736 rv = ap_proxy_connect_uds(newsock, conn->uds_path, conn->scpool);
2743 conn->uds_path,
2752 conn->uds_path,
2867 if (!conn->uds_path && conn->forward) {