1. 12 Oct, 2020 1 commit
  2. 11 Oct, 2020 3 commits
  3. 10 Oct, 2020 5 commits
    • Dridi Boukelmoune's avatar
      vsl: Typo · 303ff55a
      Dridi Boukelmoune authored
      303ff55a
    • Nils Goroll's avatar
      try to stabilize vtc · 65e7c1f4
      Nils Goroll authored
      seen in vtest:
      
      **** v1   vsl|       1004 Begin           b bereq 1003 fetch
      **** v1   vsl|       1004 VCL_use         b vcl1
      **** v1   vsl|       1004 Timestamp       b Start: 1602334643.946723 0.000000 0.000000
      **** v1   vsl|       1004 BereqMethod     b PUT
      **** v1   vsl|       1004 BereqURL        b /2
      **** v1   vsl|       1004 BereqProtocol   b HTTP/1.1
      **** v1   vsl|       1004 BereqHeader     b Host: 127.0.0.1
      **** v1   vsl|       1004 BereqHeader     b Content-Length: 250000
      **** v1   vsl|       1004 BereqHeader     b X-Forwarded-For: 127.0.0.1
      **** v1   vsl|       1004 BereqMethod     b GET
      **** v1   vsl|       1004 BereqHeader     b Accept-Encoding: gzip
      **** v1   vsl|       1004 BereqHeader     b X-Varnish: 1004
      **** v1   vsl|       1004 VCL_call        b BACKEND_FETCH
      **** v1   vsl|       1004 VCL_return      b fetch
      **** v1   vsl|       1004 BackendOpen     b 26 s1 127.0.0.1 36579 127.0.0.1 60878 connect
      **** v1   vsl|       1004 Timestamp       b Bereq: 1602334643.956883 0.010159 0.010159
      **** v1   vsl|       1004 FetchError      b HTC eof (-1)
      
      Ref #3433
      65e7c1f4
    • Nils Goroll's avatar
      HSH_DerefObjCore signedness fix · 5367be3f
      Nils Goroll authored
      noticed by Dridi here:
      https://github.com/varnishcache/varnish-cache/pull/3434/commits/f9f40b991f301fb96d2e2d0d52b86c3d4b1f9f7f#r502302785
      
      The reference count returned already is an unsigned value
      5367be3f
    • Nils Goroll's avatar
      Fix request body reference count assertion · f7cc84a7
      Nils Goroll authored
      Test case by Reza, thank you
      
      Fixes #3433
      Closes #3434
      f7cc84a7
    • Nils Goroll's avatar
      polish shard director logging · 8c9cde8f
      Nils Goroll authored
      SLT_Notice requires messages to be prefixed by the vmod name. Using this
      format for notices only would appear inconsistent, so we change all
      shard log messages to that format.
      8c9cde8f
  4. 09 Oct, 2020 15 commits
  5. 08 Oct, 2020 6 commits
  6. 07 Oct, 2020 5 commits
  7. 06 Oct, 2020 2 commits
  8. 05 Oct, 2020 3 commits
    • Nils Goroll's avatar
      8b3ac69c
    • Nils Goroll's avatar
      dump argv to panic buffer · d0e986a6
      Nils Goroll authored
      This is solely to make bug reports more useful
      d0e986a6
    • Dridi Boukelmoune's avatar
      http2: Don't send resp connection-specific headers · 9210c468
      Dridi Boukelmoune authored
      Some browsers are strict about this and simply drop responses containing
      such headers. Since this is not filtering a context switch between a
      client and a backend transaction (or cache hit) a new filtering flag is
      added to the HTTP headers table for connection-specific headers. This
      new flag cannot be compounded as HTTPH_R_FETCH|HTTPH_A_INS because the
      TE header is an exception and left alone, even though trailers aren't
      supported.
      
      Better diff with the --ignore-all-space option.
      
      We could go further and consider any client request containing one as
      malformed as mandated by RFC 7540.
      
      Closes #3416
      9210c468