Jenkins build is back to normal : 3.HEAD-amd64-FreeBSD-9.1-clang #439

2014-01-03 Thread noc
See

Jenkins build is back to normal : 3.HEAD-amd64-FreeBSD-7.2 #2053

2014-01-03 Thread noc
See

Re: [PATCH] client-side redesign pt1 - Comm::TcpReceiver

2014-01-03 Thread Alex Rousskov
On 12/03/2013 10:05 PM, Amos Jeffries wrote: > This patch abstracts the TCP socket operations out of existing > client-side code into a class which can be re-used for any TCP socket code. > +namespace Comm { > + > +class TcpReceiver : virtual public AsyncJob > +{ > +public: Missing class descrip

Re: [PATCH] HTTP Parser upgrade

2014-01-03 Thread Alex Rousskov
On 01/03/2014 05:28 AM, Amos Jeffries wrote: >>> 1) avoid the current design of 2-pass parsing: a) generic-parse just to >>> determine it is a request-line, then b) re-parse with HttpRequest to get >>> the fields already found by HttpParser. >> I do not think we need two passes. The caller knows

Re: [PATCH] HTTP Parser upgrade

2014-01-03 Thread Amos Jeffries
On 3/01/2014 8:08 a.m., Alex Rousskov wrote: > On 01/02/2014 06:45 AM, Amos Jeffries wrote: Http::Http1ParserPointer >>> >>> The proposed naming approach results in awkward names with too many >>> "HTTP"s in them. I suggest a different arrangement: >>> >>> * namespace Http // stuff common t