1. 21 Jun, 2024 32 commits
  2. 03 Jun, 2024 2 commits
  3. 29 Apr, 2024 1 commit
  4. 09 Apr, 2024 1 commit
  5. 08 Apr, 2024 1 commit
  6. 04 Apr, 2024 3 commits
    • Dridi Boukelmoune's avatar
      vtc(7): Misplaced double-quote · 5c4fbcc1
      Dridi Boukelmoune authored
      5c4fbcc1
    • Dridi Boukelmoune's avatar
      vtc: Coverage for initial h2 settings · 4e7fb1a9
      Dridi Boukelmoune authored
      There's no way to probe the current push status or maximum frame size.
      4e7fb1a9
    • Dridi Boukelmoune's avatar
      param: Restore old default h2_max_header_list_size · fd9bf7e6
      Dridi Boukelmoune authored
      Except that the old default value replaces the maximum one. Aligning
      with the literal maximum value for the underlying HTTP/2 setting breaks
      32bit builds because the byte tweaks take a detour via ssize_t. When it
      casts to uintmax_t the MSB is propagated all the way, triggering the
      following error at build time:
      
      > 4294967295b is too large for this architecture.
      
      Instead of fighting a tweak that is clearly wrong, grant h2 clients a
      maximum of 2GB of uncompressed headers (instead of 4GB) that will never
      happen, because h2 is overall much wronger.
      
      Conflicts:
      	include/tbl/params.h
      fd9bf7e6