On Mon, Jun 17, 2013 at 05:50:29AM +0000, Jayadevan M wrote: > >What version of haproxy is this ? > > > It is haproxy-1.4.22
OK. That's really strange. I'll recheck here by copy-pasting your data to a fake responder, just in case we missed something. > What does " MSG_DONTWAIT|MSG_NOSIGNAL, NULL, 0) = -1 EAGAIN (Resource > temporarily unavailable) <0.000014> " mean? It means that a recv() attempt was made on the socket but that no data were available yet and that haproxy must poll the fd first, which is why this is followed by a call to poll(), and only once poll() returns OK on this FD, recv() is attempted again. Best regards, Willy

