From: Chris Hofstaedtler Date: Tue, 29 May 2018 22:11:10 +0000 (+0200) Subject: Clean up some old docstrings X-Git-Tag: dnsdist-1.3.3~187^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35520716921c45ff7407fd05d28349a065ffa46b;p=thirdparty%2Fpdns.git Clean up some old docstrings --- diff --git a/pdns/dnsbackend.hh b/pdns/dnsbackend.hh index 0d35c919b5..901987f66a 100644 --- a/pdns/dnsbackend.hh +++ b/pdns/dnsbackend.hh @@ -106,7 +106,7 @@ struct TSIGKey { class DNSPacket; -//! This virtual base class defines the interface for backends for the ahudns. +//! This virtual base class defines the interface for backends for PowerDNS. /** To create a backend, inherit from this class and implement functions for all virtual methods. Methods should not throw an exception if they are sure they did not find the requested data. However, if an error occurred which prevented them temporarily from performing a lockup, they should throw a DBException, diff --git a/pdns/nameserver.cc b/pdns/nameserver.cc index ef7eef4c66..3ce54d92f6 100644 --- a/pdns/nameserver.cc +++ b/pdns/nameserver.cc @@ -61,8 +61,8 @@ extern StatBag S; A DNSBackend is an entity that returns DNSResourceRecord objects in return to explicit questions for domains with a specified QType - PowerDNS uses the UeberBackend as its DNSBackend. The UeberBackend by default has no DNSBackends within itself, those are loaded - using the pdns_control tool. This way DNSBackend implementations can be kept completely separate (but they often aren't).s + PowerDNS uses the UeberBackend, which hosts DNSBackends. By default it has no DNSBackends within itself, those are loaded + by setting --load=. This way DNSBackend implementations can be kept completely separate, but most aren't. If one or more DNSBackends are loaded, the UeberBackend fields the queries to all of them until one answers.