1. 21 Mar, 2017 1 commit
  2. 21 Feb, 2017 2 commits
  3. 17 Feb, 2017 1 commit
  4. 09 Feb, 2017 1 commit
  5. 02 Dec, 2016 3 commits
  6. 10 Oct, 2015 1 commit
  7. 21 May, 2015 4 commits
  8. 02 Apr, 2015 2 commits
  9. 15 Dec, 2014 1 commit
  10. 30 Nov, 2014 2 commits
  11. 29 Nov, 2014 1 commit
  12. 23 Nov, 2014 6 commits
  13. 22 Nov, 2014 4 commits
  14. 14 Nov, 2014 1 commit
    • Geoff Simmons's avatar
      bump to version 0.3, the first version compatible with Varnish 4. · eaa2d571
      Geoff Simmons authored
      This is a complete re-implementation, not just for Varnish 4, but also
      because, for the state maintained to access the ov structure in backref,
      it does not use a session table. Instead, regex objects have a pthread key
      for thread-local access to the ov in the ctx workspace.
      eaa2d571
  15. 01 Oct, 2014 1 commit
  16. 29 Jul, 2014 3 commits
  17. 19 Mar, 2014 1 commit
  18. 04 Dec, 2013 2 commits
  19. 19 Nov, 2013 1 commit
    • Nils Goroll's avatar
      always compile dynamic REs - caching compiled regexps needs more work · 35e66edc
      Nils Goroll authored
      The previous code had some issues:
      
      - race: priv_call->priv could be incomplete when being non-null, so
        using it outside re_mutex was not safe.
      
        fix: make sure that the re_t is complete before referencing it in
        priv_call->priv using a membar
      
      - caching dynamic REs did not work because invalid comparison of
        the cached pattern, also freeing the cached REs was incorrect
      
        it could be a good idea to add a global cache for compiled
        patterns (dynamic or not), but as long as we don't have that,
        it's probably safest to just recompile dynamic REs always
      35e66edc
  20. 05 Nov, 2013 2 commits