Lines Matching refs:new_url
1123 php_url *new_url = php_url_parse(loc); in make_http_soap_request() local
1125 if (new_url != NULL) { in make_http_soap_request()
1129 if (new_url->scheme == NULL && new_url->path != NULL) { in make_http_soap_request()
1130 new_url->scheme = phpurl->scheme ? estrdup(phpurl->scheme) : NULL; in make_http_soap_request()
1131 new_url->host = phpurl->host ? estrdup(phpurl->host) : NULL; in make_http_soap_request()
1132 new_url->port = phpurl->port; in make_http_soap_request()
1133 if (new_url->path && new_url->path[0] != '/') { in make_http_soap_request()
1138 char *s = emalloc((p - t) + strlen(new_url->path) + 2); in make_http_soap_request()
1141 strcat(s, new_url->path); in make_http_soap_request()
1142 efree(new_url->path); in make_http_soap_request()
1143 new_url->path = s; in make_http_soap_request()
1146 char *s = emalloc(strlen(new_url->path) + 2); in make_http_soap_request()
1148 strcat(s, new_url->path); in make_http_soap_request()
1149 efree(new_url->path); in make_http_soap_request()
1150 new_url->path = s; in make_http_soap_request()
1154 phpurl = new_url; in make_http_soap_request()
1218 php_url *new_url = emalloc(sizeof(php_url)); in make_http_soap_request() local
1223 *new_url = *phpurl; in make_http_soap_request()
1231 phpurl = new_url; in make_http_soap_request()