Re: git commit: TS-2469: remove libreadline which is gpl licensed

2014-01-06 Thread Ben
y supports just not supporting advanced line editing / history capabilities, which can be reenabled by adding libedit/libeditline. Ben.

Re: TCP Fast Open (TFO) in Traffic Server

2014-01-22 Thread Ben
an arguement per socket just to try enabling it with a fallback path. It'd also be useful to see support in http_load. I supppose starting with global enable on tcp fast open enable, and then adding support to http_load would be a good starting point. Ben.

Re: TCP Fast Open (TFO) in Traffic Server

2014-01-22 Thread Ben
(struct sockaddr *) &connections[cnum].sa, connections[cnum].sa_len) < 0) { #else if (connect(connections[cnum].conn_fd, (struct sockaddr *) &connections[cnum].sa, connections[cnum].sa_len) < 0) { #endif And then skipping the sending of that data later... Ben.

Re: TCP Fast Open (TFO) in Traffic Server

2014-03-25 Thread Ben
g down stream than upstream). So if you have a proxy server on the same local network as a server, it's probably safe to accept non TFO connections to the proxy, then do TFO from proxy to web server. Unfortunately web server support still isn't common. I've only tested with modified lighttpd, but afaik none of the web servers have native support yet. Ben.

Re: packets collapsed in receive queue due to low socket buffer

2014-10-26 Thread Ben
On Sun, Oct 26, 2014 at 11:05:51AM +0200, Ergin Ozekes wrote: > Hi james; > > In the beginning of my investigation I've set the all interfaces ring > buffer size max value of the ethernet cards ( which is 4078 by using > ethtool -g). And also I've increased the socket buffer size by using kernel >

Re: Sample server configuration for 10 Gbps traffic

2014-11-03 Thread Ben
single user fine. If you want to have lots of users then you need fast storage etc. It all depends how much is cached vs new data etc. So many open questions, that you're going to have to be more specific. Ben.

TS-4523: Add the ability to pause/resume data consumption in the CPP API

2016-06-16 Thread David Ben Zakai
Hi all, I'd like to suggest an API change in the CPP API Transformation interface. My own use case is that I'd like to be able to pause the transformation, handle what I can from the file and release the buffered content before resuming and releasing the rest of the data. Basically what I'm tryin

Re: TS-4523: Add the ability to pause/resume data consumption in the CPP API

2016-06-21 Thread David Ben Zakai
M Brian Geffon wrote: > The thing I'm missing about this, why can't you just keep buffering to the > same file while you're doing analysis? I don't see why you need to pause > anything? > > Brian > > On Friday, June 17, 2016, David Ben Zakai >