1. 09 Dec, 2019 7 commits
  2. 06 Dec, 2019 4 commits
  3. 03 Dec, 2019 2 commits
  4. 02 Dec, 2019 19 commits
  5. 29 Nov, 2019 2 commits
    • Nils Goroll's avatar
      guard against accidental regressions regarding obj · c8585914
      Nils Goroll authored
      enum gethdr_e and VCL_HTTP have a 1:1 relation except for HDR_OBJ which
      does not have a corresponding VCL_HTTP pointer.
      
      As I am about to use a "reverse VRT_selecthttp()" to get from VCL_HTTP
      to enum gethdr_e, I would want to guard against accidental introduction
      of a regression.
      c8585914
    • Dridi Boukelmoune's avatar
      Polish · 935b6bad
      Dridi Boukelmoune authored
      935b6bad
  6. 28 Nov, 2019 5 commits
  7. 26 Nov, 2019 1 commit
    • Emmanuel Hocdet's avatar
      Simplify WS allocation in tlv_string · e74f9e87
      Emmanuel Hocdet authored
      Patch by @ehocdet, commit message edited by @nigoroll:
      
      The root cause of #3131 was misdiagnosed to the extent that, while this
      change had prevented it, the root cause was a bug in WS_ReserveSize()
      fixed in 505b7bd9
      
      The previous tlv_string() code was correct except for the
      fact that error handling should have checked for WS_ReserveSize(ctx->ws,
      len+1) <= len (also spotted by @ehocdet).
      
      Someone had mentioned at some point that we would not want to VRT_fail(),
      but I think this must have been related to the proxy transport code, not
      the proxy vmod.
      
      Ref #3131
      e74f9e87