Marten Seemann

Results 802 comments of Marten Seemann

Hello @jstordeur, Currently the qpack implementation doesn't use the dynamic table at all, and we might need to change the design of it a bit to make that work. The...

We’re actually in the process of replacing the Write method by the more performant Append method. It’s not decided yet if we’ll keep the Write method once that’s done.

I don't think we ever exposed a way to set the logger in previous versions.

Doesn't sound unreasonable. Want to submit a PR?

It seems like the `MaxDatagramFrameSize` is too large for IPv6 connections, where the maximum packet size is 1232 and not 1252. Want so submit a PR reducing it by 20?

@tmcnicol Go for it, a PR would be appreciated! I haven't thought a lot about this issue yet, please let me know if you run into any problems.

Why do you need to copy the TLS config?

Which linked issue? The reason I'd like to avoid copying the config is because then key updates (via `tls.Config.SetSessionTicketKeys()`) won't work any more. Of course, if there's a compelling reason...

Hello @FiloSottile, Thank you for opening this issue. I'd **really really** love to do that, the dependency on crypto/tls has been a huge pain point in the past, and I've...

`SetSessionTicketKeys` indeed is a problem. Users would have to remember to call it on both the original and the converted config, which is easy to miss. Another problem is the...