]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Merge branch 'master' of github.com:PowerDNS/pdns
authorbert hubert <bert.hubert@netherlabs.nl>
Wed, 28 Oct 2015 20:38:39 +0000 (21:38 +0100)
committerbert hubert <bert.hubert@netherlabs.nl>
Wed, 28 Oct 2015 20:38:39 +0000 (21:38 +0100)
Conflicts:
docs/markdown/appendix/backend-writers-guide.md

docs/markdown/appendix/backend-writers-guide.md

index 738de14d192a398156171d1a068a9e2b0d6151b3..f046fe5b82fa2763c871838d3e835843dca77b93 100644 (file)
@@ -1,5 +1,10 @@
 # Backend writers' guide
-PowerDNS backends are implemented via a simple yet powerful C++ interface. If your needs are not met by the PipeBackend, you may want to write your own. Before doing any PowerDNS development, please visit [the wiki](http://wiki.powerdns.com).
+PowerDNS backends are implemented via a simple yet powerful C++ interface. 
+If your needs are not met by the PipeBackend, you may want to write your
+own.  Before doing any PowerDNS development, please visit [the
+wiki](http://wiki.powerdns.com).  Also please read [this blog
+post](http://blog.powerdns.com/2015/06/23/what-is-a-powerdns-backend-and-how-do-i-make-it-send-an-nxdomain/)
+which has a FAQ and several pictures that help explain what a backend is.
 
 A backend contains zero DNS logic. It need not look for CNAMEs, it need not return NS records unless explicitly asked for, etcetera. All DNS logic is contained within PDNS itself - backends should simply return records matching the description asked for.