Lines Matching refs:new_url
1033 php_url *new_url = php_url_parse(loc); in make_http_soap_request() local
1035 if (new_url != NULL) { in make_http_soap_request()
1039 if (new_url->scheme == NULL && new_url->path != NULL) { in make_http_soap_request()
1040 new_url->scheme = phpurl->scheme ? estrdup(phpurl->scheme) : NULL; in make_http_soap_request()
1041 new_url->host = phpurl->host ? estrdup(phpurl->host) : NULL; in make_http_soap_request()
1042 new_url->port = phpurl->port; in make_http_soap_request()
1043 if (new_url->path && new_url->path[0] != '/') { in make_http_soap_request()
1048 char *s = emalloc((p - t) + strlen(new_url->path) + 2); in make_http_soap_request()
1051 strcat(s, new_url->path); in make_http_soap_request()
1052 efree(new_url->path); in make_http_soap_request()
1053 new_url->path = s; in make_http_soap_request()
1056 char *s = emalloc(strlen(new_url->path) + 2); in make_http_soap_request()
1058 strcat(s, new_url->path); in make_http_soap_request()
1059 efree(new_url->path); in make_http_soap_request()
1060 new_url->path = s; in make_http_soap_request()
1064 phpurl = new_url; in make_http_soap_request()
1128 php_url *new_url = emalloc(sizeof(php_url)); in make_http_soap_request() local
1133 *new_url = *phpurl; in make_http_soap_request()
1141 phpurl = new_url; in make_http_soap_request()