subscribe

2011-02-25 Thread Ben Timby
subscribe

proto_ftp.c

2011-02-25 Thread Ben Timby
First of all, sorry for the previous list spam. I pasted the wrong address while subscribing. I am setting up FTP load balancing using HAProxy. The rub is that I want something similar to the X-Forwarded-For header supported in HTTP. I am aware of TPROXY, but I don't wish to maintain my own

Re: proto_ftp.c

2011-02-25 Thread Krzysztof Olędzki
On 2011-02-25 18:29, Ben Timby wrote: First of all, sorry for the previous list spam. I pasted the wrong address while subscribing. I am setting up FTP load balancing using HAProxy. The rub is that I want something similar to the X-Forwarded-For header supported in HTTP. I am aware of TPROXY,

Re: balance url_param with POST

2011-02-25 Thread Bryan Talbot
In general, I need to load balance based on a url param for any standard HTTP method, especially the RESTful ones, not just GET. I need it to work for GET, HEAD, PUT, DELETE, POST at the very least. It would be great to work with custom methods like PURGE as well as that is commonly used with

Re: balance url_param with POST

2011-02-25 Thread Bryan Talbot
Maybe this is the problem? Line 548 of backend.c from 1.4.11: if (s-txn.meth == HTTP_METH_POST memchr(s-txn.req.sol + s-txn.req.sl.rq.u, '', s-txn.req.sl.rq.u_l ) == NULL)

Re: balance url_param with POST

2011-02-25 Thread Willy Tarreau
Hi Bryan, On Fri, Feb 25, 2011 at 11:40:00PM -0800, Bryan Talbot wrote: Maybe this is the problem? Line 548 of backend.c from 1.4.11: if (s-txn.meth == HTTP_METH_POST memchr(s-txn.req.sol + s-txn.req.sl.rq.u, '',