Hi Igor, On Sun, Jun 23, 2019 at 08:42:46PM +0800, Igor Pav wrote: > Hi Olivier, > > The `retry-on 0rtt-rejected` will only work in tcp mode, is that > possible to let it work in http mode too? >
It should work with HTTP too. What may happen is you're using "alpn" on the server line, and thus we have to wait until the handshake is done to know if we're using H1 or H2, so we can't send early data, because we won't know its format. If you only want yo use H2, you can add "proto h2" on your server line, and it should work. Regards, Olivier

