Home | History | Annotate | Download | only in libxml2

Lines Matching refs:URL

126     char *path;		/* the path within the URL */
294 * @URL: The URL used to initialize the context
296 * (Re)Initialize an FTP context by parsing the URL and finding
301 xmlNanoFTPScanURL(void *ctx, const char *URL) {
320 if (URL == NULL) return;
322 uri = xmlParseURIRaw(URL, 1);
358 * @URL: The URL used to update the context
360 * Update an FTP context by parsing the URL and finding
370 xmlNanoFTPUpdateURL(void *ctx, const char *URL) {
374 if (URL == NULL)
383 uri = xmlParseURIRaw(URL, 1);
418 * @URL: The proxy URL used to initialize the proxy context
420 * (Re)Initialize the FTP Proxy context by parsing the URL and finding
423 * A NULL URL cleans up proxy informations.
427 xmlNanoFTPScanProxy(const char *URL) {
437 if (URL == NULL)
442 "Using FTP proxy %s\n", URL);
444 if (URL == NULL) return;
446 uri = xmlParseURIRaw(URL, 1);
464 * @URL: The URL used to initialize the context
472 xmlNanoFTPNewCtxt(const char *URL) {
490 unescaped = xmlURIUnescapeString(URL, 0, NULL);
494 } else if (URL != NULL)
495 xmlNanoFTPScanURL(ret, URL);
1985 * @URL: the URL to the resource
1993 xmlNanoFTPOpen(const char *URL) {
1998 if (URL == NULL) return(NULL);
1999 if (strncmp("ftp://", URL, 6)) return(NULL);
2001 ctxt = (xmlNanoFTPCtxtPtr) xmlNanoFTPNewCtxt(URL);