On Fri, Dec 31, 2021 at 09:36:54AM -0000, Stuart Henderson wrote: > On 2021-12-31, Georg Pfuetzenreuter <[email protected]> wrote: > > Hi, > > I searched but couldn't find any recent threads. > > Does httpd support HTTP/2? > > No. > > > Is support for the upcoming HTTP/3 planned? > > guessing but I think this would also be "no".
It is indeed not. HTTP/3 is "just" HTTP/2 over QUIC. Implementing reliable communication over UDP in userland is a lot of work and it is rather complicated. On top it is a violation of the OSI stack and the socket(2) API. And then it needs to be reimplemented for every application that wants to use it. -- :wq Claudio

