This project is mirrored from https://github.com/coredns/coredns.git. The repository failed to update .
Repository mirroring has been paused due to too many failed attempts, and can be resumed by a project maintainer.
Last successful update .
  1. 04 Oct, 2019 1 commit
    • Miek Gieben's avatar
      Make request.Request smaller (#3351) · 03ea2ae9
      Miek Gieben authored
      * Make request.Request smaller
      
      This makes the request struct smaller and removes the pointer to the do
      boolean (tri-bool) as size == 0 will indicate if we have cached it.
      
      Family can be a int8 because it only carries 3 values, Size itself is
      just a uint16 under the covers.
      
      This is a more comprehensive fix than #3292
      
      Closes #3292
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      
      * cache: fix test
      
      this now needs a valid response writter
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      03ea2ae9
  2. 03 Oct, 2019 3 commits
  3. 02 Oct, 2019 5 commits
  4. 01 Oct, 2019 4 commits
  5. 30 Sep, 2019 3 commits
  6. 28 Sep, 2019 3 commits
  7. 27 Sep, 2019 6 commits
  8. 26 Sep, 2019 2 commits
  9. 25 Sep, 2019 1 commit
  10. 24 Sep, 2019 3 commits
  11. 23 Sep, 2019 1 commit
  12. 20 Sep, 2019 1 commit
    • Miek Gieben's avatar
      all: simply registering plugins (#3287) · 004c5fca
      Miek Gieben authored
      Abstract the caddy call and make it simpler.
      
      See #3261 for some part of the discussion.
      
      Go from:
      
      ~~~ go
      func init() {
             caddy.RegisterPlugin("any", caddy.Plugin{
                     ServerType: "dns",
                     Action:     setup,
             })
      }
      ~~~
      
      To:
      
      ~~~ go
      func init() { plugin.Register("any", setup) }
      ~~~
      
      This requires some external documents in coredns.io to be updated as
      well; the old way still works, so it's backwards compatible.
      Signed-off-by: default avatarMiek Gieben <miek@miek.nl>
      004c5fca
  13. 19 Sep, 2019 4 commits
  14. 16 Sep, 2019 3 commits