Dustin Lundquist

Results 59 comments of Dustin Lundquist

@PantherJohn interesting, [this LWN article](https://lwn.net/Articles/508865/) has a more complete description of what I think you are proposing. It's simply enough of try, I would appreciate if you would like to...

It looks like TCP_FASTOPEN_CONNECT is a newer API, that doesn't require a modified TCP client code path: https://www.mail-archive.com/[email protected]/msg149369.html. This looks like a much better approach since it doesn't introduce an...

I'm developing on Debian 9.4 (libc 2.24). I verified it was using the `MSG_FASTOPEN` path using strace. It looks like `TCP_FASTOPEN_CONNECT` was only added a year ago. If you are...

Yeah, TCP Fast Open is still in the experimental phase. Given the relatively small size of this patch, I see no harm in leaving it around. Given the way TCP...

Note to self: see #294 and #308 for context.

@mestery I've started on adding datagram support to the listener and connection objects: https://github.com/dlundquist/sniproxy/compare/4f34b67...udp-poc, the `recvmsg()`, `socket()`, `bind()`, `connect()` sequence works to receive additional UDP packets of the same socket...

@mestery I think we are going to need to preserve datagram framing in the buffer module, the present buffer was designed for a stream. My first though would be to...

That error indicates the `parse_tls_header()` wasn't able to parse the TLS client hello and find the SNI extension. The next step would be to either load that dump of the...

well, that's HTTP, not HTTPS. On Wed, Feb 26, 2020 at 9:24 AM seth-ml wrote: > I did a Wireshark dump on the client and it is sending the following...

It looks like an http request is arriving on port 443. Are you entering http://Apple.com:443 or https://apple.com? > On Feb 26, 2020, at 09:41, seth-ml wrote: > >  >...