Home | History | Annotate | Download | only in libxml2

Lines Matching defs:proxy

147 static char *proxy = NULL;	/* the proxy name if any */
148 static int proxyPort = 0; /* the proxy port if any */
149 static char *proxyUser = NULL; /* user for proxy authentication */
150 static char *proxyPasswd = NULL;/* passwd for proxy authentication */
183 * Currently it just checks for proxy informations,
229 * Cleanup the FTP protocol layer. This cleanup proxy informations.
234 if (proxy != NULL) {
235 xmlFree(proxy);
236 proxy = NULL;
255 * @host: the proxy host name
256 * @port: the proxy port
257 * @user: the proxy user name
258 * @passwd: the proxy password
259 * @type: the type of proxy 1 for using SITE, 2 for USER a@b
261 * Setup the FTP proxy informations.
269 if (proxy != NULL) {
270 xmlFree(proxy);
271 proxy = NULL;
282 proxy = xmlMemStrdup(host);
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.
430 if (proxy != NULL) {
431 xmlFree(proxy);
432 proxy = NULL;
439 "Removing FTP proxy info\n");
442 "Using FTP proxy %s\n", URL);
455 proxy = xmlMemStrdup(uri->server);
870 if (proxy) {
888 if (proxy) {
889 if (getaddrinfo (proxy, NULL, &hints, &result) != 0) {
932 if (proxy)
933 hp = gethostbyname (GETHOSTBYNAME_ARG_CAST proxy);
1016 * Of course in case of using a proxy this get really nasty and is not
1019 if (proxy) {
1025 * We need proxy auth
1082 * We assume we don't need more authentication to the proxy
1169 * If you need support for other Proxy authentication scheme
1179 * Non-proxy handling.