Searched refs:proxy (Results 1 - 15 of 15) sorted by relevance

/haiku-fatelf/src/add-ons/kernel/file_systems/userlandfs/kernel_add_on/
H A DFileSystem.cpp194 NodeListenerProxy* proxy = fNodeListeners->Clear(true); local
195 while (proxy != NULL) {
196 NodeListenerProxy* next = proxy->HashTableLink();
197 proxy->StopListening();
198 delete proxy;
199 proxy = next;
261 // create the node listener proxy map
508 // lookup the proxy
509 NodeListenerProxy* proxy = fNodeListeners->Lookup( local
511 if (proxy !
538 NodeListenerProxy* proxy = fNodeListeners->Lookup( local
714 _NodeListenerEventOccurred(NodeListenerProxy* proxy, const KMessage* event) argument
[all...]
H A DFileSystem.h127 NodeListenerProxy* proxy,
/haiku-fatelf/src/bin/network/wget/src/
H A Dretr.c611 FTP, proxy, etc. */
626 char *mynewloc, *proxy;
659 proxy = getproxy (u);
660 if (proxy)
666 /* Parse the proxy URL. */
667 proxy_url = url_parse (proxy, &up_error_code, NULL, true);
670 char *error = url_error (proxy, up_error_code);
671 logprintf (LOG_NOTQUIET, _("Error parsing proxy URL %s: %s.\n"),
672 proxy, error);
681 logprintf (LOG_NOTQUIET, _("Error in proxy UR
622 char *mynewloc, *proxy; local
1111 char *proxy = NULL; local
[all...]
H A Dftp.c75 struct url *proxy; /* FTWK-style proxy */ member in struct:__anon4469
288 char *host = con->proxy ? con->proxy->host : u->host;
289 int port = con->proxy ? con->proxy->port : u->port;
292 if (con->proxy)
294 /* If proxy is in use, log in as username@target-site. */
321 if (con->proxy)
2119 ftp_loop (struct url *u, int *dt, struct url *proxy, boo argument
[all...]
H A Dhttp.c859 /* Ancient versions of Netscape proxy server, presumably predating
1389 If PROXY is non-NULL, the connection will be made to the proxy
1392 gethttp (struct url *u, struct http_stat *hs, int *dt, struct url *proxy,
1442 causing it to not close the connection and leave both the proxy
1445 !opt.http_keep_alive || opt.ignore_length || proxy != NULL;
1492 if (proxy
1494 /* When using SSL over proxy, CONNECT establishes a direct
1605 if (proxy)
1609 command-line/wgetrc parameters. With proxy
1610 authentication, it's the reverse, because proxy URL
1387 gethttp(struct url *u, struct http_stat *hs, int *dt, struct url *proxy, struct iri *iri) argument
2413 http_loop(struct url *u, char **newloc, char **local_file, const char *referer, int *dt, struct url *proxy, struct iri *iri) argument
[all...]
/haiku-fatelf/src/tools/docbook/libxml2/
H A Dnanoftp.c144 static char *proxy = NULL; /* the proxy name if any */ variable
145 static int proxyPort = 0; /* the proxy port if any */
146 static char *proxyUser = NULL; /* user for proxy authentication */
147 static char *proxyPasswd = NULL;/* passwd for proxy authentication */
180 * Currently it just checks for proxy informations,
226 * Cleanup the FTP protocol layer. This cleanup proxy informations.
231 if (proxy != NULL) {
232 xmlFree(proxy);
233 proxy
[all...]
H A Dnanohttp.c163 static char *proxy = NULL; /* the proxy name if any */ variable
164 static int proxyPort; /* the proxy port if any */
210 * Currently it just checks for proxy informations
228 if (proxy == NULL) {
256 if (proxy != NULL) {
257 xmlFree(proxy);
258 proxy = NULL;
326 * @URL: The proxy URL used to initialize the proxy contex
[all...]
/haiku-fatelf/src/libs/agg/gpc/
H A Dgpc.c165 struct p_shape *proxy; /* Pointer to actual structure used */ member in struct:p_shape
739 for (v= polygon->proxy->v[LEFT]; v; v= v->next)
751 for (v= polygon->proxy->v[LEFT]; v; v= nextv)
773 nv->next= p->proxy->v[LEFT];
775 /* Update proxy->[LEFT] to point to nv */
776 p->proxy->v[LEFT]= nv;
785 q->proxy->hole= TRUE;
787 if (p->proxy != q->proxy)
790 p->proxy
[all...]
/haiku-fatelf/src/bin/network/ftp/
H A Dftp_var.h140 char c_proxy; /* proxy server may execute */
222 GLOBAL int proxy; /* proxy server connection active */ variable
223 GLOBAL int proxflag; /* proxy connection exists */
278 GLOBAL int unix_proxy; /* proxy is unix, can use binary for ascii */
H A Dftp.c130 char pasv[BUFSIZ]; /* passive port for proxy data connection */
625 if (proxy) {
931 if (proxy && is_retr) {
1800 if (proxy)
1804 proxy++;
1806 if (!proxy)
1810 proxy = 0;
1900 fputs("proxy server does not support third party transfers.\n",
1950 if (strcmp(cmd, "RETR") && !proxy)
1952 else if (!strcmp(cmd, "RETR") && proxy)
[all...]
H A Dutil.c227 if (proxy)
244 if (proxy)
311 if (!proxy)
466 if (proxy)
573 pswitch(!proxy);
581 pswitch(!proxy);
H A Dmain.c120 #define FTP_PROXY "ftp_proxy" /* env var with FTP proxy location */
121 #define HTTP_PROXY "http_proxy" /* env var with HTTP proxy location */
422 proxy = 0; /* proxy not active */
950 proxy ? "Proxy c" : "C");
952 if (!proxy || c->c_proxy)
H A Druserpass.c164 if (proxy) {
H A Dcmds.c462 if (proxy) {
698 while ((cp = remglob(argv, proxy, NULL)) != NULL) {
799 if (!proxy) {
802 fprintf(ttyout, "Connected for proxy commands to %s.\n",
806 fputs("No proxy connection.\n", ttyout);
1808 if (!proxy) {
1845 fputs("?Invalid proxy command.\n", ttyout);
1863 if (cmdpos > 0) /* remove leading "proxy " from input buffer */
1992 if (proxy) {
H A Dfetch.c457 * Retrieve URL, via a proxy if necessary, using HTTP.
458 * If proxyenv is set, use that for the proxy, otherwise try ftp_proxy or
606 if (! EMPTYSTRING(proxyenv)) { /* use proxy */
651 if (parse_url(proxyenv, "proxy URL", &purltype,
661 warnx("Malformed proxy URL `%s'",
671 "Scoped address notation `%s' disallowed via web proxy",
811 "%swith proxy authorization", leading);
1648 char *proxy; local
1697 proxy = getoptionvalue("ftp_proxy");
1698 if (!EMPTYSTRING(proxy)
[all...]

Completed in 254 milliseconds