similar to: Basic HTTP Proxy Authentication: patch update

Displaying 20 results from an estimated 300 matches similar to: "Basic HTTP Proxy Authentication: patch update"

2002 Apr 04
1
[patch] Basic HTTP Proxy Authentication
Hi all, I have put together a patch for supporting "Basic" HTTP Proxy Authentication. The patch changes the interpretation of the RSYNC_PROXY environment variable so that the syntax user:pass@proxy.foo:port may be used instead of just proxy.foo:port (the old syntax is of course still supported). The patch has only been tested lightly, but it should(TM) work. The patch (and
2004 Sep 10
0
http streaming in the xmms plugin
Hi, Here's a patch to add support for streaming HTTP transport to the xmms plugin. Most of the code (in particular, http.c) is taken from the xmms mpg123 input plugin. You'll need to make a three-line change to the xmms mpg123 input plugin to get streaming to work. The mpeg plugin currently handles all http urls itself unless they end in an ogg or real audio extension (which means flac
2006 May 24
0
rsync connection limit
Hello! In the attached file is patch for the option to set client connection limit. We had problem for dead hosts, so default system timeout is not enough. --conlimit option added Will be great to see this patch in the future version, so we do not need to patch every time. Thanks and Cheers, Eugene. -- -------------- next part -------------- diff -Naur rsync-2.6.8/errcode.h
2005 Apr 01
1
bug in xmms plugin v 1.1.2
I, like others here, have noticed that the xmms plugin is broken for first use in version 1.1.2. The problem is confusion between dynamically-allocated and statically-allocated strings. A quick, although perhaps not elegant, fix is included below. Note: you would not see this if you already had a [flac] section in your config file, which probably explains how it escaped the notice of
2004 Feb 06
1
Rsync 2.5.7 local buffer overflow
Hi folks, I've discovered a local stack overflow bug in rsync 2.5.7. Problem is in open_socket_out function (socket.c). ... char portbuf[10]; char *h; int proxied = 0; char buffer[1024]; char *cp; ... h = getenv("RSYNC_PROXY"); proxied = (h != NULL) && (*h != '\0'); ... if (proxied) {
2003 Mar 05
0
"rsync --daemon" and IPv4/v6 dual stack
on systems that has separate IPv4/v6 socket layer (i.e. IPv4 packet does not get routed to AF_INET6 socket) rsync --daemon would accept IPv6 sessions only. open_socket_in() tries to deal with the situation, but it was not enough. here's the patch. (it is required on all *BSDs to accept both IPv4 and IPv6 connections with --daemon mode) itojun --- ? configure.lineno ? lib/dummy
2016 Jul 27
2
Proxy
Thank you all. Except from the buffering it was the fact that I used "localhost" instead of 127.0.0.1 in the proxy_pass. Now my configuration is: location /stream1/ { proxy_buffering off; proxy_ignore_client_abort off; proxy_intercept_errors on; proxy_next_upstream error timeout invalid_header;
2009 Nov 10
1
swapless pvm
What is the best practice in creating PVm domU''s - with or without swap? >From the admin point of view, especially in HA environment it is temptating not to have a seperate swap partition. Could it be performance issue if swapping to swap-file insted of swap-partition? What about pure swapless- no swapfile, no swap-partition? Any expirence out there? regards Longina -- --
2008 Jul 17
0
bonding+vlan+ bridging old vifs
Hi again, Bonding seems to work with mode =4. I have a strange problem now - can''t get rid of old virtual interfaces which were created on the first start up of xend. Even if I boot machine with xend disabled, I still have old stuff coming up: veth0-veth5, and vif0.0-vif0.3. I would like to configure all networkig manualy first - how can I remove those interfaces, where are they
2008 Jul 16
6
vlans+bonding+bridging
hi, I have to configure Xen server and DomU''s which should be able to talk to different vlans - depending on services put on DomU''s. I would like to enslave 2 NICs via bond interface. Both NICs are on trunk ports which are configured in the same way, the same native vlan. I don''t know, if I have to add vlans tagging to eth* interfaces then enslave tagged eth*
2006 Dec 13
1
Passing arguments to panels in trellis plots
Dear all, I am trying to produce survfit plots in a trellis environment and I would like the plots to be logarithmic. I am trying this: print(Ecdf(~time | size*type, groups=alg,data=B,subscripts=TRUE, panel=function(x,groups,subscripts) { t <- survfit(Surv(time[subscripts],event[subscripts])~groups[subscripts],data=B)
2012 Oct 02
2
[PATCH] Add SCRAM-SHA-1 password scheme
Hello, attached is an hg export on top of the current dovecot-2.2 branch, which adds support for a SCRAM-SHA-1 password scheme. Ideally I'd want doveadm pw's rounds flag to apply to this, but that's currently specific to the crypt password scheme, so I left it out for now. Regards, Florian Zeitz -------------- next part -------------- # HG changeset patch # User Florian Zeitz
2006 Dec 09
0
Survfit plots in trellis graphics
Dear all, is there a way to produce survfit plots in a trellis environment? I am trying this: print(Ecdf(~time | size*type, groups=alg,data=B,subscripts=TRUE, panel=function(x,groups,subscripts) { t <- survfit(Surv(time[subscripts],event[subscripts])~groups[subscripts],data=B,conf.type="none")
2006 Dec 30
2
Dovecot SASL vs. Micro$oft Outlook and Outlook Express
Hi, I have just started using Dovecot (1.0.10) SASL behind my Postfix (2.3.3). Everything works fine, as long as I send the SMTP AUTH command manually. When using M$ Outlook (2000 and 2003) and Outlook Express 6, authentification always fails. Turning on the Dovecot auth debug on reveals the reason: Dovecot SASL expects, in accordance with the standards, the following format of the SMTP AUTH
2008 May 09
1
no network to DomU in Ubuntu Hardy
Hi, I just installed Xen in Ubuntu Hardy. DomU is not accessible either from Dom0 or external network. I used default set up network-bridge/vif-bridge from xend-conf.sxp. Bridge has got default name eth1 which is my default ethernet interface. Before creating DomU: root@jaguar-0:/home/longina# xm list Name ID Mem VCPUs State Time(s) Domain-0
2011 May 24
0
read_nonblock': end of file reached (EOF Error)
I have written a program to consume a Restful Service from yahoo, and I am landed with this error. I am using Net/HTTP library for this, My program is as follows require ''net/http'' APPLICATION_ID = ''XIM4jgY6YIrOoB'' YAHOO_WEB_SERVICE_SEARCH_URL = ''http://search.yahooapis.com/ WebSearchService/V1/webSearch'' query = ''world cup
2016 Jul 27
0
Proxy
We've tested this as working relatively well, disable buffering is the major key if I recall. Otherwise the NGINX server loads up data before handing off to the client. server { listen 80; server_name my_dns_name.tldn; location / { proxy_buffering off; proxy_ignore_client_abort off; proxy_intercept_errors on;
2016 Jul 27
2
Proxy
Hi all, I want to do a proxy to icecast (:8000) with nginx (:80). Its working for me, stream is running on port 80, but on the first loading is "pending" For a long time before its starts play. Who using the "proxy_pass" on nginx and can help? Thnx. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2012 Sep 03
2
erb syntaxes
Hi guys, I''m trying to do the following in my template: location <%= location %> { proxy_pass <%= proxy %>; <% if scope.lookupvar(''nginx::resource::location::proxy_header'') then scope.lookupvar(''nginx::resource::location::proxy_header'').each do |header| %> proxy_set_header <%= header %> <% end
2003 Jun 25
0
[patch] Basic HTTP Proxy Authentication
On 2002-Apr-04 at 02:24:41 -0800, Bardur Arantsson wrote: > I have put together a patch for supporting "Basic" HTTP Proxy > Authentication. The patch changes the interpretatio of the RSYNC_PROXY > environment variable so that the syntax > > user:pass@proxy.foo:port > > may be used instead of just > > proxy.foo:port > > (the old syntax is of course