1. 07 Oct, 2020 1 commit
  2. 14 Sep, 2020 1 commit
  3. 26 Aug, 2020 1 commit
  4. 20 Aug, 2020 2 commits
  5. 19 Aug, 2020 31 commits
  6. 18 Aug, 2020 1 commit
  7. 14 Aug, 2020 1 commit
  8. 16 Jun, 2020 2 commits
    • Nils Goroll's avatar
      respect `send_timeout` for "dripping" http1 writes · 62db2484
      Nils Goroll authored
      Previously, we only checked `v1l->deadline` (which gets initialized
      from the `send_timeout` session attribute or parameter) only for short
      writes, so for successful "dripping" http1 writes (streaming from a
      backend busy object with small chunks), we did not respect the
      timeout.
      
      This patch restructures `V1L_Flush()` to always check the deadline
      before a write by turning a `while() { ... }` into a `do { ... }
      while` with the same continuation criteria: `while (i != v1l->liov)`
      is turned into `if (i == v1l->liov) break;` and `while (i > 0 || errno
      == EWOULDBLOCK)` is kept to retry short writes.
      
      This also reduces the `writev()` call sites to one.
      
      Fixes #3189
      
       Conflicts:
      	bin/varnishd/http1/cache_http1_line.c
      	bin/varnishtest/tests/s00011.vtc
      62db2484
    • Poul-Henning Kamp's avatar
      Handle EWOULDBLOCK as a short write · b6a94a28
      Poul-Henning Kamp authored
      b6a94a28